diff options
author | David Robillard <d@drobilla.net> | 2018-09-16 21:22:49 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-16 21:43:06 +0200 |
commit | 5410d3630672d5e7adf93253240168eebb692e75 (patch) | |
tree | f91c9c43ec5cec1d7193df0baf88744338cdec47 /test/path_test.cpp | |
parent | 5cb9ce065405c4e37d9a0f18b0995262cf0c1ac8 (diff) | |
download | raul-5410d3630672d5e7adf93253240168eebb692e75.tar.gz raul-5410d3630672d5e7adf93253240168eebb692e75.tar.bz2 raul-5410d3630672d5e7adf93253240168eebb692e75.zip |
Remove using namespace declarations
Diffstat (limited to 'test/path_test.cpp')
-rw-r--r-- | test/path_test.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/path_test.cpp b/test/path_test.cpp index 3b7b61b..9391063 100644 --- a/test/path_test.cpp +++ b/test/path_test.cpp @@ -21,15 +21,15 @@ #include <iostream> #include <string> -using namespace std; -using namespace Raul; - int main() { + using Path = Raul::Path; + using Symbol = Raul::Symbol; + #define CHECK(cond) \ do { if (!(cond)) { \ - cerr << "Test failed: " << (cond) << endl; \ + std::cerr << "Test failed: " << (cond) << std::endl; \ return 1; \ } } while (0) |