Correct some warnings when building with mingw

pull/261/head
Léo Terziman 2013-10-30 17:29:26 +01:00
parent 2071b4fb2f
commit f5e3382d58
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ struct aiColor3D
bool operator < (const aiColor3D& other) const {
return r < other.r || (
r == other.r && (g < other.g ||
g == other.g && b < other.b
(g == other.g && b < other.b)
)
);
}