From 70996d8cdc01e5a3aadb8c45a16dc25db946193d Mon Sep 17 00:00:00 2001 From: Kirill Zhdanovich Date: Wed, 20 Nov 2013 15:31:37 +0300 Subject: [PATCH] [linux] fix gcc build. --- graphics/color.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/color.hpp b/graphics/color.hpp index 7926951015..7fefc2a8ae 100644 --- a/graphics/color.hpp +++ b/graphics/color.hpp @@ -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 << " ";