aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2017-04-25 09:16:57 +0800
committerfanquake <fanquake@gmail.com>2017-04-25 09:16:57 +0800
commit93dbb15954679c1b2eb2ad59e601c5523272e810 (patch)
treebff66e35bdbafe404e132fd9e789d2570a8d433a /src/util.cpp
parentc73af5416b66f09cec0eb106f5a10f9bb6ef9cb1 (diff)
downloadbitcoin-93dbb15954679c1b2eb2ad59e601c5523272e810.tar.xz
Remove Clang workaround for Boost 1.46
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 0dc203cba5..cf10ee4aa5 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -88,19 +88,6 @@
#include <openssl/rand.h>
#include <openssl/conf.h>
-// Work around clang compilation problem in Boost 1.46:
-// /usr/include/boost/program_options/detail/config_file.hpp:163:17: error: call to function 'to_internal' that is neither visible in the template definition nor found by argument-dependent lookup
-// See also: http://stackoverflow.com/questions/10020179/compilation-fail-in-boost-librairies-program-options
-// http://clang.debian.net/status.php?version=3.0&key=CANNOT_FIND_FUNCTION
-namespace boost {
-
- namespace program_options {
- std::string to_internal(const std::string&);
- }
-
-} // namespace boost
-
-
const char * const BITCOIN_CONF_FILENAME = "bitcoin.conf";
const char * const BITCOIN_PID_FILENAME = "bitcoind.pid";