diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-07 17:11:52 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-07 17:55:13 +0100 |
commit | 5283410568e921e89f18a036bc3fb745063b3ca7 (patch) | |
tree | baca7e0cfb01c25f007b0dcd40e58c4823299117 /src | |
parent | d33f69a4474ee1ec7e998b1232203ed63426c0da (diff) |
Remove unused includes of boost lexical_cast
We don't use lexical_cast anywhere, no need to include it.
Diffstat (limited to 'src')
-rw-r--r-- | src/rpcclient.cpp | 1 | ||||
-rw-r--r-- | src/rpcdump.cpp | 1 | ||||
-rw-r--r-- | src/rpcprotocol.cpp | 1 | ||||
-rw-r--r-- | src/rpcserver.cpp | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp index 37a501bb17..efb1fa1183 100644 --- a/src/rpcclient.cpp +++ b/src/rpcclient.cpp @@ -20,7 +20,6 @@ #include <boost/foreach.hpp> #include <boost/iostreams/concepts.hpp> #include <boost/iostreams/stream.hpp> -#include <boost/lexical_cast.hpp> #include <boost/shared_ptr.hpp> #include "json/json_spirit_writer_template.h" diff --git a/src/rpcdump.cpp b/src/rpcdump.cpp index 635d4ac19b..41f2a57eca 100644 --- a/src/rpcdump.cpp +++ b/src/rpcdump.cpp @@ -14,7 +14,6 @@ #include <boost/algorithm/string.hpp> #include <boost/date_time/posix_time/posix_time.hpp> -#include <boost/lexical_cast.hpp> #include "json/json_spirit_value.h" using namespace json_spirit; diff --git a/src/rpcprotocol.cpp b/src/rpcprotocol.cpp index 4ea84e99be..13028fdc77 100644 --- a/src/rpcprotocol.cpp +++ b/src/rpcprotocol.cpp @@ -17,7 +17,6 @@ #include <boost/foreach.hpp> #include <boost/iostreams/concepts.hpp> #include <boost/iostreams/stream.hpp> -#include <boost/lexical_cast.hpp> #include <boost/shared_ptr.hpp> #include "json/json_spirit_writer_template.h" diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index 4d110124b2..0c29e1d5f3 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -22,7 +22,6 @@ #include <boost/foreach.hpp> #include <boost/iostreams/concepts.hpp> #include <boost/iostreams/stream.hpp> -#include <boost/lexical_cast.hpp> #include <boost/shared_ptr.hpp> #include "json/json_spirit_writer_template.h" |