summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-12-02 16:20:19 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-02 16:20:19 +0100
commit7915c9087ca6c77f08e394f1dbcc03fc9a4027e3 (patch)
tree6bacfc4181fa0e4a1100c412edbdfd35516fb0a7 /slideshow
parent78dabf58b6a1552c82e8dc6096833f7ce36a5414 (diff)
warning C4018: '<' : signed/unsigned mismatch
Change-Id: I5e6a6debf01886c283f5a2d6b9cacc00a44f7134
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/opengl/TransitionImpl.hxx2
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()));
}