summaryrefslogtreecommitdiff
path: root/src/utils.cc
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2023-03-23 14:12:57 +0100
committerMartin Michlmayr <tbm@cyrius.com>2023-03-24 14:29:57 +0800
commitd1bc057a220f33a79501318477f8e9af1111229f (patch)
treed7d67d260d89f768eafee47a13ceedd15d77e82b /src/utils.cc
parent956d8ea37247b34a5300c9d55abc7c75324fff33 (diff)
downloadfork-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.cc4
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;
}