소스 검색

Correct some warnings when building with mingw

Léo Terziman 12 년 전
부모
커밋
f5e3382d58
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      include/assimp/types.h

+ 1 - 1
include/assimp/types.h

@@ -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)
 			)
 		);
 	}