1. 10 May, 2017 6 commits
  2. 08 May, 2017 2 commits
    • 水樹素子's avatar
      [C++] Add grpc/streaming test and fix Deserialize (#4296) · 0920d663
      水樹素子 authored
      * [C++] Add delete msg->buf
      
      * [C++] Add grpc streaming test
      
      * Use free instead of delete
      
      * Refactoring grpctest
      0920d663
    • Heiko Becker's avatar
      Tweak fallthrough comments to get recognized by gcc7 (#4298) · bbb72f0b
      Heiko Becker authored
      GCC gained a new warning, -Wimplicit-fallthrough, which warns about
      implicitly falling through a case statement. The regular expressions
      used at the default level (-Wimplicit-fallthrough=3) don't match with
      a colon at the end. The comment also needs to be followed (after
      optional whitespace and other comments) by a 'case' or 'default'
      keyword, i.e. it will not be recognized with a '}' between the comment
      and the keyword.
      bbb72f0b
  3. 04 May, 2017 1 commit
  4. 01 May, 2017 1 commit
    • Kamil Rojewski's avatar
      Generating the most strict TS code possible (#4286) · 86777bd6
      Kamil Rojewski authored
      * Eclipse ignore
      
      * TypeScript support
      
      * Prefixing enums
      
      * Test results
      
      * Merged JS and TS generators
      
      * Fixed AppVeyor build problems
      
      * Fixed more AppVeyor build problems
      
      * Fixed more AppVeyor build problems
      
      * Changed TS flag to options struct
      
      * Storing options by value
      
      * Removed unneeded const
      
      * Re-export support for unions
      
      * Uint support
      
      * Casting bools to numbers for mutation
      
      * TS shell tests
      
      * Reverted generates js test file to original version
      
      * Backing up js tests and properly generating test data
      
      * Not importing flatbuffers for TS test generation
      
      * Not overwriting generated js for tests
      
      * AppVeyor test fixes
      
      * Generating the most strict TS code possible
      86777bd6
  5. 26 Apr, 2017 1 commit
    • Wouter van Oortmerssen's avatar
      Made the verifier catch zero-offsets. · 8b92122f
      Wouter van Oortmerssen authored
      Zero offsets are non-sensical in FlatBuffers (since offsets are
      relative to themselves) but were allowed by the verifier. This could
      cause buffers made up of all zeroes to be interpreted as correct
      buffers with an empty root object.
      
      Generally, not allowing such offsets will make the verifier more
      likely to catch problems earlier.
      
      Change-Id: I54010bea29721b326ff8e5348fcd9fe78e5e7506
      Tested: on Linux.
      8b92122f
  6. 24 Apr, 2017 2 commits
  7. 21 Apr, 2017 2 commits
    • Wouter van Oortmerssen's avatar
      Fix Android STLPort build. · f52ddfbd
      Wouter van Oortmerssen authored
      Change-Id: Iceca7b8b455c8463d9b82b928332a875dee3d19e
      f52ddfbd
    • Kamil Rojewski's avatar
      TS tests fixes (#4265) · 808b44f8
      Kamil Rojewski authored
      * Eclipse ignore
      
      * TypeScript support
      
      * Prefixing enums
      
      * Test results
      
      * Merged JS and TS generators
      
      * Fixed AppVeyor build problems
      
      * Fixed more AppVeyor build problems
      
      * Fixed more AppVeyor build problems
      
      * Changed TS flag to options struct
      
      * Storing options by value
      
      * Removed unneeded const
      
      * Re-export support for unions
      
      * Uint support
      
      * Casting bools to numbers for mutation
      
      * TS shell tests
      
      * Reverted generates js test file to original version
      
      * Backing up js tests and properly generating test data
      
      * Not importing flatbuffers for TS test generation
      
      * Not overwriting generated js for tests
      
      * AppVeyor test fixes
      808b44f8
  8. 20 Apr, 2017 2 commits
  9. 19 Apr, 2017 3 commits
  10. 18 Apr, 2017 4 commits
  11. 17 Apr, 2017 2 commits
    • Wouter van Oortmerssen's avatar
      Fixed clang needing union copy constructor. · 728bb64f
      Wouter van Oortmerssen authored
      Move constructors are present, which it should use instead.
      
      This is a temp fix to make it compile, but eventually we should
      generate a proper copy constructor just in-case people want to
      copy objects with unions.
      
      Tested on: Linux, OS X.
      
      Change-Id: Idf85419995c96f5959061882157541573e306083
      728bb64f
    • Jason Stubbs's avatar
      [C++] fix bounds checking on integer parsing (#4250) · a07f0d42
      Jason Stubbs authored
      * fix bounds checking on integer parsing
      
      the previous code was allowing 255 for int8_t, similar for int16_t
      and int32_t, and even negative values for unsignd types.
      
      this patch fixes bounds checking for 8-bit, 16-bit and 32-bit types.
      testing for both acceptable values and unacceptable values at the
      boundaries are also improved.
      
      bounds checking on 64-bit types isn't addressed by this patch.
      
      * fix 'unary minus operator applied to unsigned type, result still unsigned'
      
      * fix & placement
      a07f0d42
  12. 13 Apr, 2017 2 commits
  13. 12 Apr, 2017 2 commits
  14. 10 Apr, 2017 1 commit
    • Kamil Rojewski's avatar
      TypeScript support (#4232) · 28e7dbd3
      Kamil Rojewski authored
      * Eclipse ignore
      
      * TypeScript support
      
      * Prefixing enums
      
      * Test results
      
      * Merged JS and TS generators
      
      * Fixed AppVeyor build problems
      
      * Fixed more AppVeyor build problems
      
      * Fixed more AppVeyor build problems
      
      * Changed TS flag to options struct
      
      * Storing options by value
      
      * Removed unneeded const
      
      * Re-export support for unions
      
      * Uint support
      
      * Casting bools to numbers for mutation
      
      * TS shell tests
      
      * Reverted generates js test file to original version
      
      * Backing up js tests and properly generating test data
      28e7dbd3
  15. 08 Apr, 2017 1 commit
  16. 30 Mar, 2017 1 commit
  17. 29 Mar, 2017 7 commits