aboutsummaryrefslogtreecommitdiff
path: root/libbutl/path.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/path.cxx')
-rw-r--r--libbutl/path.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/libbutl/path.cxx b/libbutl/path.cxx
index bbc4754..ac85016 100644
--- a/libbutl/path.cxx
+++ b/libbutl/path.cxx
@@ -112,8 +112,7 @@ namespace butl
string_type const& d (
!root (s)
? s
- //@@ MOD VC ADL does not seem to kick in for some reason...
- : string_type (std::operator+ (s, directory_separator)));
+ : string_type (s + directory_separator));
if (_chdir (d.c_str ()) != 0)
throw_generic_error (errno);