Skip to content
Snippets Groups Projects
Commit 73c1d000 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

fix compiler warnings C4800 with MSVC

parent 017be838
No related branches found
No related tags found
No related merge requests found
......@@ -63,13 +63,13 @@ public:
}
/// has X dimension
bool hasX() const { return (_type & CoordinateSystemType::type::X); }
bool hasX() const { return (_type & CoordinateSystemType::type::X) != 0; }
/// has Y dimension
bool hasY() const { return (_type & CoordinateSystemType::type::Y); }
bool hasY() const { return (_type & CoordinateSystemType::type::Y) != 0; }
/// has z dimension
bool hasZ() const { return (_type & CoordinateSystemType::type::Z); }
bool hasZ() const { return (_type & CoordinateSystemType::type::Z) != 0; }
private:
template <class T>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment