diff options
author | MarcoFalke <falke.marco@gmail.com> | 2017-01-05 11:31:56 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-01-05 11:32:05 +0100 |
commit | 4cfd57d2e38207d78722ce8c9274ba8dd700d1cc (patch) | |
tree | bf92932a6f870b3d44f24c4c5f214518cd63d258 /src/test/streams_tests.cpp | |
parent | 406f35d99d0fcd2f50370280e605283d04da466a (diff) | |
parent | 73f41190b91dce9c125b1828b18f7625e0200145 (diff) |
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/streams_tests.cpp')
-rw-r--r-- | src/test/streams_tests.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/streams_tests.cpp b/src/test/streams_tests.cpp index 31bcebe919..94b5cc119b 100644 --- a/src/test/streams_tests.cpp +++ b/src/test/streams_tests.cpp @@ -9,8 +9,7 @@ #include <boost/assign/std/vector.hpp> // for 'operator+=()' #include <boost/assert.hpp> #include <boost/test/unit_test.hpp> - -using namespace std; + using namespace boost::assign; // bring 'operator+=()' into scope BOOST_FIXTURE_TEST_SUITE(streams_tests, BasicTestingSetup) |