summaryrefslogtreecommitdiffstats
path: root/test/path_test.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-16 21:22:49 +0200
committerDavid Robillard <d@drobilla.net>2018-09-16 21:43:06 +0200
commit5410d3630672d5e7adf93253240168eebb692e75 (patch)
treef91c9c43ec5cec1d7193df0baf88744338cdec47 /test/path_test.cpp
parent5cb9ce065405c4e37d9a0f18b0995262cf0c1ac8 (diff)
downloadraul-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.cpp8
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)