aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-01-20 13:22:27 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-01-20 13:22:27 +0200
commitf3bc384b3604b0579c3b61972bd3b791ff658ec0 (patch)
tree0082b23388258c248831e5ad3d196df4ecf832ae
parentd8fc8867ae9eb86e132a6ba676b6c5319346f7f0 (diff)
Add missing const qualifiers
-rw-r--r--cutl/fs/path.hxx4
1 files changed, 2 insertions, 2 deletions
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);
}