mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 14:38:29 +01:00
Merge pull request #5513
856e862namespace: drop most boost namespaces and a few header cleanups (Cory Fields)9b1ab86namespace: drop boost::assign altogether here (Cory Fields)a324199namespace: remove boost namespace pollution (Cory Fields)
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user