diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-07-04 19:57:22 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-07-04 20:08:56 +0200 |
commit | 33ff399d7211417f9991161579acbca8d8a2c67f (patch) | |
tree | 064f49f2bd90ef8d779aef0e57639bcdba3e8ae6 /include/tools/b3dtrans.hxx | |
parent | 74827231e8f60e94cb29c959bbd27d44c77c6a2b (diff) |
warning C4389 != signed/unsigned mismatch
Change-Id: I1cc4be1e7068ce3c40340e88fcde75fc7862a18a
Diffstat (limited to 'include/tools/b3dtrans.hxx')
-rw-r--r-- | include/tools/b3dtrans.hxx | 10 |
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(); |