diff options
-rw-r--r-- | slideshow/source/engine/opengl/TransitionImpl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/opengl/TransitionImpl.hxx b/slideshow/source/engine/opengl/TransitionImpl.hxx index f27fd7743e72..9ee73ddfc39f 100644 --- a/slideshow/source/engine/opengl/TransitionImpl.hxx +++ b/slideshow/source/engine/opengl/TransitionImpl.hxx @@ -338,7 +338,7 @@ public: 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())); } |