Kaydet (Commit) 7915c908 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

warning C4018: '<' : signed/unsigned mismatch

Change-Id: I5e6a6debf01886c283f5a2d6b9cacc00a44f7134
üst 78dabf58
...@@ -338,7 +338,7 @@ public: ...@@ -338,7 +338,7 @@ public:
int getVerticesCount() const int getVerticesCount() const
{ {
assert(Vertices.size() < std::numeric_limits<int>::max()); assert(Vertices.size() < unsigned(std::numeric_limits<int>::max()));
return int(unsigned(Vertices.size())); return int(unsigned(Vertices.size()));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment