diff options
-rw-r--r-- | tests/TestClient.hpp | 6 | ||||
-rw-r--r-- | wscript | 1 |
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 @@ -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', |