diff options
Diffstat (limited to 'src/utils.cc')
-rw-r--r-- | src/utils.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/utils.cc b/src/utils.cc index 1d457891..baf5a27a 100644 --- a/src/utils.cc +++ b/src/utils.cc @@ -849,11 +849,7 @@ path resolve_path(const path& pathname) path temp = pathname; if (temp.string()[0] == '~') temp = expand_path(temp); -#if (BOOST_VERSION >= 106000) temp.lexically_normal(); -#else - temp.normalize(); -#endif return temp; } |