diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2023-03-23 14:12:57 +0100 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2023-03-24 14:29:57 +0800 |
commit | d1bc057a220f33a79501318477f8e9af1111229f (patch) | |
tree | d7d67d260d89f768eafee47a13ceedd15d77e82b /src/utils.cc | |
parent | 956d8ea37247b34a5300c9d55abc7c75324fff33 (diff) | |
download | fork-ledger-d1bc057a220f33a79501318477f8e9af1111229f.tar.gz fork-ledger-d1bc057a220f33a79501318477f8e9af1111229f.tar.bz2 fork-ledger-d1bc057a220f33a79501318477f8e9af1111229f.zip |
Bump required Boost version to 1.72
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; } |