[linux] fix gcc build.

This commit is contained in:
Kirill Zhdanovich 2013-11-20 15:31:37 +03:00 committed by Alex Zolotarev
parent 1c5d235c4d
commit 70996d8cdc

View file

@ -37,7 +37,7 @@ namespace graphics
inline int blueFromARGB(uint32_t c) {return (c & 0xFF); }
inline int alphaFromARGB(uint32_t c) {return (c >> 24) & 0xFF;}
string DebugPrint(Color const & c)
inline string DebugPrint(Color const & c)
{
ostringstream os;
os << "r: " << (int)c.r << " ";