aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}