diff --git a/SDL2pp/Color.cc b/SDL2pp/Color.cc index 1807eff..7950859 100644 --- a/SDL2pp/Color.cc +++ b/SDL2pp/Color.cc @@ -1,6 +1,6 @@ /* libSDL2pp - C++11 bindings/wrapper for SDL2 - Copyright (C) 2017 Vraiment + Copyright (C) 2013-2015 Dmitry Marakasov This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -22,6 +22,6 @@ #include std::ostream& operator<<(std::ostream& stream, const SDL2pp::Color& color) { - stream << "[r:" << static_cast(color.r) << ",g:" << static_cast(color.g) << ",b:" << static_cast(color.b) << ",a:" << static_cast(color.a) << "]"; - return stream; + stream << "[r:" << static_cast(color.r) << ",g:" << static_cast(color.g) << ",b:" << static_cast(color.b) << ",a:" << static_cast(color.a) << "]"; + return stream; } diff --git a/SDL2pp/Color.hh b/SDL2pp/Color.hh index 5bd6e80..0971ff7 100644 --- a/SDL2pp/Color.hh +++ b/SDL2pp/Color.hh @@ -1,6 +1,6 @@ /* libSDL2pp - C++11 bindings/wrapper for SDL2 - Copyright (C) 2017 Vraiment + Copyright (C) 2013-2015 Dmitry Marakasov This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages