[Libreoffice-commits] core.git: basebmp/inc

Stephan Bergmann sbergman at redhat.com
Tue Jan 19 01:43:48 PST 2016


 basebmp/inc/packedpixeliterator.hxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 352f9fdff619b5a0a1414c29cfc47068165a599c
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Jan 19 10:43:21 2016 +0100

    -Werror=shift-negative-value (GCC 6)
    
    Change-Id: Ifc7b1d6675a8e8fb41dd47cc1282059c3790736f

diff --git a/basebmp/inc/packedpixeliterator.hxx b/basebmp/inc/packedpixeliterator.hxx
index 776a45e..693f59b 100644
--- a/basebmp/inc/packedpixeliterator.hxx
+++ b/basebmp/inc/packedpixeliterator.hxx
@@ -78,7 +78,7 @@ public:
         num_intraword_positions=sizeof(value_type)*8/bits_per_pixel,
         /** Bit mask for one pixel (least significant bits)
          */
-        bit_mask=~(~0 << bits_per_pixel)
+        bit_mask=~(~0u << bits_per_pixel)
     };
 
 private:
@@ -238,7 +238,7 @@ public:
         num_intraword_positions=sizeof(value_type)*8/bits_per_pixel,
         /** Bit mask for one pixel (least significant bits)
          */
-        bit_mask=~(~0 << bits_per_pixel)
+        bit_mask=~(~0u << bits_per_pixel)
     };
 
 private:
@@ -477,7 +477,7 @@ public:
         num_intraword_positions=sizeof(value_type)*8/bits_per_pixel,
         /** Bit mask for one pixel (least significant bits)
          */
-        bit_mask=~(~0 << bits_per_pixel)
+        bit_mask=~(~0u << bits_per_pixel)
     };
 
     // TODO(F2): direction of iteration (ImageIterator can be made to


More information about the Libreoffice-commits mailing list