summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/TestClient.hpp6
-rw-r--r--wscript1
2 files changed, 4 insertions, 3 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
diff --git a/wscript b/wscript
index 707fc353..c6078bda 100644
--- a/wscript
+++ b/wscript
@@ -72,7 +72,6 @@ def configure(conf):
'-Wno-float-equal',
'-Wno-format-nonliteral',
'-Wno-global-constructors',
- '-Wno-header-hygiene',
'-Wno-implicit-fallthrough',
'-Wno-implicit-float-conversion',
'-Wno-implicit-int-conversion',