diff options
| author | MarcoFalke <[email protected]> | 2017-01-05 11:31:56 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2017-01-05 11:32:05 +0100 |
| commit | 4cfd57d2e38207d78722ce8c9274ba8dd700d1cc (patch) | |
| tree | bf92932a6f870b3d44f24c4c5f214518cd63d258 /src/test/util_tests.cpp | |
| parent | Merge #9373: Linearize script update (hash byte reversal and Python 3 support) (diff) | |
| parent | Refactoring: Removed using namespace <xxx> from bench/ and test/ source files. (diff) | |
| download | discoin-4cfd57d2e38207d78722ce8c9274ba8dd700d1cc.tar.xz discoin-4cfd57d2e38207d78722ce8c9274ba8dd700d1cc.zip | |
Merge #9281: Refactor: Remove using namespace <xxx> from bench/ & test/ sources
73f4119 Refactoring: Removed using namespace <xxx> from bench/ and test/ source files. (Karl-Johan Alm)
Diffstat (limited to 'src/test/util_tests.cpp')
| -rw-r--r-- | src/test/util_tests.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test/util_tests.cpp b/src/test/util_tests.cpp index fc42748d3..641655621 100644 --- a/src/test/util_tests.cpp +++ b/src/test/util_tests.cpp @@ -17,9 +17,7 @@ #include <boost/test/unit_test.hpp> -using namespace std; - -extern map<string, string> mapArgs; +extern std::map<std::string, std::string> mapArgs; BOOST_FIXTURE_TEST_SUITE(util_tests, BasicTestingSetup) |