From: Lars Gullik Bjønnes <lar...@gullik.org>

Trivial to remove the namespace injection.
---
 src/frontends/tests/boost.cpp | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/frontends/tests/boost.cpp b/src/frontends/tests/boost.cpp
index 09d701d..6151f1f 100644
--- a/src/frontends/tests/boost.cpp
+++ b/src/frontends/tests/boost.cpp
@@ -14,14 +14,12 @@
 #include <iostream>
 #include <boost/assert.hpp>
 
-using namespace std;
-
 namespace boost {
 
 #ifndef BOOST_NO_EXCEPTIONS
-void throw_exception(exception const & /*e*/)
+void throw_exception(std::exception const &)
 {
-       cerr<<"ASSERTION VIOLATED IN biblio test";
+       std::cerr << "ASSERTION VIOLATED IN biblio test";
        BOOST_ASSERT(false);
 }
 #endif
-- 
1.8.0

Reply via email to