From 4ab25091da582b5632e17340b26cfdbe59d08c72 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 31 Dec 2011 12:36:51 +0000 Subject: Resolved comparison between signed and unsigned integer expressions (second try). --- src/model/material.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/model') diff --git a/src/model/material.h b/src/model/material.h index 6d32a87..1674e46 100644 --- a/src/model/material.h +++ b/src/model/material.h @@ -68,7 +68,7 @@ public: * @brief returns true if the material has the requested flag set * */ inline bool flag_is_set(const SurfaceFlags surfaceflag) const { - return ((material_flags & (unsigned int) surfaceflag) == surfaceflag); + return (((int) material_flags & surfaceflag) == surfaceflag); } /** -- cgit v1.2.3