namespace: drop most boost namespaces and a few header cleanups

A few boost::asio were left around because they're very wordy otherwise.
This commit is contained in:
Cory Fields
2014-12-19 16:50:15 -05:00
parent 9b1ab860ff
commit 856e862f4a
11 changed files with 29 additions and 49 deletions

View File

@@ -24,7 +24,6 @@
using namespace std;
using namespace json_spirit;
using namespace boost::algorithm;
// In script_tests.cpp
extern Array read_json(const std::string& jsondata);
@@ -47,7 +46,7 @@ unsigned int ParseScriptFlags(string strFlags)
}
unsigned int flags = 0;
vector<string> words;
split(words, strFlags, is_any_of(","));
boost::algorithm::split(words, strFlags, boost::algorithm::is_any_of(","));
BOOST_FOREACH(string word, words)
{