From c913192fcb7daaf800c1ee28d8026754e5abf5de Mon Sep 17 00:00:00 2001 From: David Capello Date: Mon, 7 Jan 2013 13:20:30 -0300 Subject: [PATCH] Fix color_unittest compilation error --- src/app/color_unittest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/color_unittest.cpp b/src/app/color_unittest.cpp index f0f16fa65..8faa1e41e 100644 --- a/src/app/color_unittest.cpp +++ b/src/app/color_unittest.cpp @@ -20,6 +20,8 @@ #include "app/color.h" +using namespace app; + inline std::ostream& operator<<(std::ostream& os, const Color& color) { return os << color.toString(); }