• Brian Duff's avatar
    Fix bug with large extension field numbers. · ec2f2445
    Brian Duff authored
    Previously, extensions with field numbers greater than 268435455 would
    result in a compile time error in generated code that looks something
    like this:
    
    Foo.java:3178: error: integer number too large: 3346754610
                    3346754610);
    
    This is because we were trying to represent the tag number (an
    unsigned int) using a java int constant, but java int constants are
    signed, and can't exceed Integer.MAX_VALUE.
    
    Fixed by declaring it as a long instead, and casting it down to an
    int in the implementation. This is safe, because the tag value always
    fits in 32 bis.
    
    Change-Id: If2017bacb4e20af667eaeaf9b65ddc2c30a7709f
    ec2f2445
Name
Last commit
Last update
benchmarks Loading commit data...
conformance Loading commit data...
editors Loading commit data...
examples Loading commit data...
java Loading commit data...
javanano Loading commit data...
m4 Loading commit data...
more_tests Loading commit data...
protoc-artifacts Loading commit data...
python Loading commit data...
ruby Loading commit data...
src Loading commit data...
vsprojects Loading commit data...
.gitignore Loading commit data...
.travis.yml Loading commit data...
Android.mk Loading commit data...
CHANGES.txt Loading commit data...
CONTRIBUTORS.txt Loading commit data...
INSTALL.txt Loading commit data...
LICENSE Loading commit data...
Makefile.am Loading commit data...
README.md Loading commit data...
autogen.sh Loading commit data...
config.h.include Loading commit data...
configure.ac Loading commit data...
generate_descriptor_proto.sh Loading commit data...
post_process_dist.sh Loading commit data...
protobuf-lite.pc.in Loading commit data...
protobuf.pc.in Loading commit data...