This commit is contained in:
Mindaugas
2019-01-08 15:08:27 +02:00
4 changed files with 5 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ struct Color {
float r{}, g{}, b{};
bool operator == (const Color& o) const {
return std::tie(r, g, b) ==
std::tie(o.r, o.g, b);
std::tie(o.r, o.g, o.b);
}
};