1. 25 May, 2015 1 commit
  2. 24 May, 2015 10 commits
  3. 23 May, 2015 3 commits
  4. 22 May, 2015 8 commits
  5. 21 May, 2015 4 commits
  6. 20 May, 2015 5 commits
    • Ruben Garat's avatar
      added concrete IEqualityComparer<ExtensionIntPair> implementation in… · 83bcfefb
      Ruben Garat authored
      added concrete IEqualityComparer<ExtensionIntPair> implementation in ExtensionRegistryLite.cs to prevent AOT compilation issue with unity in iOS
      83bcfefb
    • Feng Xiao's avatar
      Merge pull request #406 from AustinSchuh/unsigned_has_bits · 08ec9dcb
      Feng Xiao authored
      Marked compiler literal unsigned.
      08ec9dcb
    • Jie Luo's avatar
      Merge pull request #399 from jtattermusch/csharp_travis · f71eea88
      Jie Luo authored
      C# travis integration
      f71eea88
    • Austin Schuh's avatar
      Marked compiler literal unsigned. · e826837f
      Austin Schuh authored
      When compiling a protobuf with gcc 3.3.2 for powerpc, I ran into 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.
      e826837f
    • Thomas Van Lenten's avatar
      Getting the ObjC generator building on Windows. · ce55ff94
      Thomas Van Lenten authored
      Remove the ClassList support (maybe bring it back in the future).
      Trim the includes to hopefully get a working Window build.
      Add some more returns after switches for compilers that warn even when all values of the enum are handled.
      Use ghtonl instead of htonl.
      Change the use of [u]int(8,32)_t within the ObjC generator code to [u]int(8,32) to match the rest of the compiler.
      Add objective-c generator files to Visual Studio project.
      ce55ff94
  7. 19 May, 2015 4 commits
  8. 18 May, 2015 3 commits
  9. 16 May, 2015 1 commit
    • Jon Skeet's avatar
      Generate *all* protos in the script, applying fixups. · b1a395ce
      Jon Skeet authored
      We still have some protos which aren't generated how we want them to be:
      
      - Until we have an option to specify the "umbrella" class, DescriptorProtoFile
        will be broken. (The change of name here affects the reflection descriptor,
        which accounts for most of the change. That's easier than trying to work out
        exactly which occurrences of Descriptor need changing though.)
      - That change affects UnittestCustomOptions
      - Issue #307 breaks Unittest.cs
      
      After this commit, we don't have the record of the fixups in the files themselves
      any more, but one centralized record in the shell script.
      b1a395ce
  10. 15 May, 2015 1 commit