Fix color_unittest compilation error

This commit is contained in:
David Capello 2013-01-07 13:20:30 -03:00
parent 2ddb0ea181
commit c913192fcb

View File

@ -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();
}