summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-07-04 19:57:22 +0200
committerMichael Stahl <mstahl@redhat.com>2013-07-04 20:08:56 +0200
commit33ff399d7211417f9991161579acbca8d8a2c67f (patch)
tree064f49f2bd90ef8d779aef0e57639bcdba3e8ae6
parent74827231e8f60e94cb29c959bbd27d44c77c6a2b (diff)
warning C4389 != signed/unsigned mismatch
Change-Id: I1cc4be1e7068ce3c40340e88fcde75fc7862a18a
-rw-r--r--include/tools/b3dtrans.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/tools/b3dtrans.hxx b/include/tools/b3dtrans.hxx
index 5dace979b820..dd21aaede863 100644
--- a/include/tools/b3dtrans.hxx
+++ b/include/tools/b3dtrans.hxx
@@ -106,11 +106,11 @@ private:
Base3DRatio meRatio;
// Flags
- unsigned mbPerspective : 1;
- unsigned mbWorldToViewValid : 1;
- unsigned mbInvTransObjectToEyeValid : 1;
- unsigned mbObjectToDeviceValid : 1;
- unsigned mbProjectionValid : 1;
+ bool mbPerspective : 1;
+ bool mbWorldToViewValid : 1;
+ bool mbInvTransObjectToEyeValid : 1;
+ bool mbObjectToDeviceValid : 1;
+ bool mbProjectionValid : 1;
public:
B3dTransformationSet();