summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2019-01-25 15:48:21 -0800
committerGitHub <noreply@github.com>2019-01-25 15:48:21 -0800
commit644db80fd377a4ee05bc2d6385b99ab152c13958 (patch)
treea2e236226332beb5f46a78ed82d0643e7371e873 /src/main.cc
parent14dc0b912bb9e51f28fa10e03fba962dec22c870 (diff)
parentd0269e8c94dca6accba1d60e24ffb7f4b2f35932 (diff)
downloadledger-644db80fd377a4ee05bc2d6385b99ab152c13958.tar.gz
ledger-644db80fd377a4ee05bc2d6385b99ab152c13958.tar.bz2
ledger-644db80fd377a4ee05bc2d6385b99ab152c13958.zip
Merge pull request #1736 from scfc/drop-conditionals-for-boost-earlier-than-1-49
Drop conditionals for Boost earlier than 1.49
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.cc b/src/main.cc
index 4348e8a6..218579cf 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -73,9 +73,6 @@ int main(int argc, char * argv[], char * envp[])
// Initialize global Boost/C++ environment
std::ios::sync_with_stdio(false);
-#if BOOST_VERSION < 104600
- filesystem::path::default_name_check(filesystem::portable_posix_name);
-#endif
std::signal(SIGINT, sigint_handler);
#if !defined(_WIN32) && !defined(__CYGWIN__)