From 5410d3630672d5e7adf93253240168eebb692e75 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 16 Sep 2018 21:22:49 +0200 Subject: Remove using namespace declarations --- test/path_test.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/path_test.cpp') 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 #include -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) -- cgit v1.2.1