Don't use std:: in the code directly (where possible).
[pulseview.git] / test / test.cpp
index 2d67f2935e2bf48e3cc4b9c83208ec374bac168d..c2a50313ef4d7ab920fa72dc44b772fe7a288146 100644 (file)
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #define BOOST_TEST_MAIN
 #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();
 }