1. 01 Jul, 2017 3 commits
  2. 29 Jun, 2017 3 commits
  3. 28 Jun, 2017 14 commits
  4. 27 Jun, 2017 1 commit
  5. 23 Jun, 2017 4 commits
  6. 22 Jun, 2017 2 commits
  7. 20 Jun, 2017 1 commit
    • Ryan Gordon's avatar
      Switch to addEnumType to fix fatal error (#3225) · 703cd8e1
      Ryan Gordon authored
      * Switch to addEnumType to fix fatal error
      
      * Fixing more cases of HHVM incompatibility
      
      * Updating tests to be hhvm compatible
      
      * Fixing tests
      
      * Fixing merge
      
      * Don't use call_user_func, should hopefully fix tests
      
      * Fixing spelling
      
      * Fixing another misspelling in a test
      
      * Fixing placement of append and kvUpdate functions
      
      * Actually fix function helpers
      
      * Remove double addEnumType. How did this ever work?
      
      * Fixing a couple more tests
      
      * Only use the setter if the return value isn't an object
      703cd8e1
  8. 19 Jun, 2017 6 commits
  9. 17 Jun, 2017 1 commit
  10. 16 Jun, 2017 5 commits
    • Thomas Van Lenten's avatar
      Raise the number of digits used for floats. · dd19b876
      Thomas Van Lenten authored
      About 1.5% of all IEEE754 single-precision numbers require nine
      decimal digits to represent accurately.
      dd19b876
    • Feng Xiao's avatar
      Merge pull request #3237 from calder/patch-1 · 710543d9
      Feng Xiao authored
      Qualify string in java_options.h
      710543d9
    • Feng Xiao's avatar
      Merge pull request #3236 from buchgr/bazel-links · 491b3204
      Feng Xiao authored
      bazel: add bazel symlinks to .gitignore
      491b3204
    • Feng Xiao's avatar
      Merge pull request #3235 from buchgr/java-target · 888e287e
      Feng Xiao authored
      bazel: Make compiled jars java 6 binary compatible.
      888e287e
    • Calder Coalson's avatar
      Qualify string in java_options.h · 4b36d400
      Calder Coalson authored
      Building the protobuf compiler with Bazel fails to resolve the unqualifed "string"s in java_options.h:
      
      ```
      ERROR: .../external/com_google_protobuf/BUILD:248:1: C++ compilation of rule '@com_google_protobuf//:protoc_lib' failed: Process exited with status 1 [sandboxed].
      In file included from external/com_google_protobuf/src/google/protobuf/compiler/java/java_context.h:41:0,
                       from external/com_google_protobuf/src/google/protobuf/compiler/java/java_enum_field_lite.cc:38:
      external/com_google_protobuf/src/google/protobuf/compiler/java/java_options.h:59:3: error: 'string' does not name a type
         string annotation_list_file;
         ^
      external/com_google_protobuf/src/google/protobuf/compiler/java/java_options.h:62:3: error: 'string' does not name a type
         string output_list_file;
         ^
      Use --strategy=CppCompile=standalone to disable sandboxing for the failing actions.
      INFO: Elapsed time: 41.487s, Critical Path: 6.20s
      //interpreter:eval_test                                               NO STATUS
      
      Executed 0 out of 1 test: 1 was skipped.
      ```
      4b36d400