Don't use std:: in the code directly (where possible).
[pulseview.git] / test / test.cpp
index 8fd2e65fad420a0fcccc1ee7414b5c46aad03a1e..c2a50313ef4d7ab920fa72dc44b772fe7a288146 100644 (file)
@@ -21,7 +21,9 @@
 #include <boost/test/unit_test.hpp>
 #include "test/test.hpp"
 
-std::ostream& operator<<(std::ostream& stream, const QString& str)
+using std::ostream;
+
+ostream& operator<<(ostream& stream, const QString& str)
 {
        return stream << str.toUtf8().data();
 }