summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-02 10:40:49 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 12:51:04 +0200
commit3f807fae50037ffcc0b69f3cd6b16a7f7d88af87 (patch)
tree2a4eac99a010c56f2ab87a3683fce7d07141bbf2 /tests
parentb5df20208086f2e8a895478c982c3d845b8191af (diff)
downloadingen-3f807fae50037ffcc0b69f3cd6b16a7f7d88af87.tar.gz
ingen-3f807fae50037ffcc0b69f3cd6b16a7f7d88af87.tar.bz2
ingen-3f807fae50037ffcc0b69f3cd6b16a7f7d88af87.zip
Fix header-hygiene warning
Diffstat (limited to 'tests')
-rw-r--r--tests/TestClient.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/TestClient.hpp b/tests/TestClient.hpp
index b23be973..ab69a4f9 100644
--- a/tests/TestClient.hpp
+++ b/tests/TestClient.hpp
@@ -22,9 +22,9 @@
#include <boost/variant/get.hpp>
-using namespace ingen;
+namespace ingen {
-class TestClient : public ingen::Interface
+class TestClient : public Interface
{
public:
explicit TestClient(Log& log) : _log(log) {}
@@ -52,4 +52,6 @@ private:
Log& _log;
};
+} // namespace ingen
+
#endif // INGEN_TESTCLIENT_HPP