slideshow/source/engine/opengl/TransitionImpl.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7915c9087ca6c77f08e394f1dbcc03fc9a4027e3
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Fri Dec 2 16:20:19 2016 +0100

    warning C4018: '<' : signed/unsigned mismatch
    
    Change-Id: I5e6a6debf01886c283f5a2d6b9cacc00a44f7134

diff --git a/slideshow/source/engine/opengl/TransitionImpl.hxx 
b/slideshow/source/engine/opengl/TransitionImpl.hxx
index f27fd77..9ee73dd 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()));
     }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to