diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2017-06-22 20:41:08 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2017-06-22 20:41:08 -0700 |
commit | 5867aff943f80f19649c7e6495765af0cb5719b2 (patch) | |
tree | dcf378e6b1c8b7e86fb97f96de77c774b4e5c5b5 /tests/helpers.hpp | |
parent | 4b371e10eed49d25bf4240a6aaa321b084e586ea (diff) |
tests: Make using namespace more explicit
Hiding using namespace in common.hpp is somewhat surprising so remove
common.hpp and move using namespace into all .cpp files that need it.
Diffstat (limited to 'tests/helpers.hpp')
-rw-r--r-- | tests/helpers.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helpers.hpp b/tests/helpers.hpp index 439f8ea..6dfdc4b 100644 --- a/tests/helpers.hpp +++ b/tests/helpers.hpp @@ -1,7 +1,7 @@ #ifndef HEADER_TEST_HELPERS_HPP #define HEADER_TEST_HELPERS_HPP -#include "common.hpp" +#include "test.hpp" #include <utility> |