1. 06 Jun, 2015 1 commit
    • Austin Schuh's avatar
      Marked another compiler literal unsigned. · 307af628
      Austin Schuh authored
      When compiling a protobuf with gcc 4.1.2 for powerpc, I ran into
      another of the following warning message:
      
      INFO: From Compiling my_proto.pb.cc powerpc-603e-linux-gcc:
      bazel-out/local_linux-dbg/genfiles/my_proto.pb.cc: In member
         function `virtual void MyProto::Clear()':
         bazel-out/local_linux-dbg/genfiles/my_proto.pb.cc:223: warning: this
            decimal constant is unsigned only in ISO C90
      
      The line in the proto file that was triggering it was:
      
        if (_has_bits_[24 / 32] & 4278190080) {
          ZR_(field1_, field2_);
        }
      
      _has_bits_ is a uint32.  The constant mask should therefore be
      unsigned.  This change updates the constant to be generated as
      unsigned.
      307af628
  2. 05 Jun, 2015 1 commit
  3. 04 Jun, 2015 7 commits
  4. 03 Jun, 2015 5 commits
  5. 02 Jun, 2015 11 commits
  6. 01 Jun, 2015 2 commits
  7. 31 May, 2015 3 commits
  8. 30 May, 2015 2 commits
  9. 29 May, 2015 3 commits
  10. 28 May, 2015 2 commits
  11. 27 May, 2015 1 commit
  12. 26 May, 2015 2 commits