From f3bc384b3604b0579c3b61972bd3b791ff658ec0 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 20 Jan 2011 13:22:27 +0200 Subject: Add missing const qualifiers --- cutl/fs/path.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cutl') diff --git a/cutl/fs/path.hxx b/cutl/fs/path.hxx index c4ea03e..99d8d35 100644 --- a/cutl/fs/path.hxx +++ b/cutl/fs/path.hxx @@ -222,7 +222,7 @@ namespace cutl public: basic_path - operator/ (basic_path const& x) + operator/ (basic_path const& x) const { basic_path r (*this); r /= x; @@ -233,7 +233,7 @@ namespace cutl operator/= (basic_path const&); basic_path - operator+ (string_type const& s) + operator+ (string_type const& s) const { return basic_path (path_ + s); } -- cgit v1.1