1. 21 Sep, 2017 1 commit
    • Khem Raj's avatar
      Fix build with clang on big-endian targets (#4440) · 28920aff
      Khem Raj authored
      * flatbuffers: Move EndianSwap template to flatbuffers/base.h
      
      Clang complains
      call to function 'EndianSwap' that is neither visible in the template definition nor found by argument-dependent lookup
           return EndianSwap(t);
      
      This seems to be due to limitation of two-phase lookup of dependent names in template definitions
      
      Its not being found using associated namespaces therefore
      it has to be made visible at the template definition site as well
      Signed-off-by: 's avatarKhem Raj <raj.khem@gmail.com>
      
      * use __builtin_bswap16 when building with clang
      
      clang pretends to be gcc 4.2.0 and therefore the code does
      not use __builtin_bswap16 but tries to synthesize it
      Signed-off-by: 's avatarKhem Raj <raj.khem@gmail.com>
      28920aff
  2. 14 Sep, 2017 2 commits
  3. 12 Sep, 2017 1 commit
  4. 07 Sep, 2017 2 commits
  5. 31 Aug, 2017 2 commits
  6. 25 Aug, 2017 2 commits
  7. 24 Aug, 2017 3 commits
  8. 17 Aug, 2017 1 commit
  9. 14 Aug, 2017 11 commits
  10. 11 Aug, 2017 4 commits
    • Wouter van Oortmerssen's avatar
      d5f5d382
    • Wouter van Oortmerssen's avatar
      Added missing generated code. · ffddbdc7
      Wouter van Oortmerssen authored
      Change-Id: I7201d6891f56094178656a76bf0f87cf36d12554
      ffddbdc7
    • Kamil Rojewski's avatar
      Vector of unions for TS/JS and PHP (#4404) · 46bb05d9
      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
      
      * Not returning null when creating vectors
      
      * Not returning null from struct contructors
      
      * Vector of unions for ts/js
      
      * Sanity check for languages
      
      * Indentation fix + output test files
      
      * Vectors of unions for php
      
      * Fixes to union vector handling + tests
      46bb05d9
    • Kamil Rojewski's avatar
      Copying required field to union type vector (#4407) · 7cc72e4b
      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
      
      * Not returning null when creating vectors
      
      * Not returning null from struct contructors
      
      * Copying required field to union type vector
      
      * Removed unneccessary bool
      7cc72e4b
  11. 10 Aug, 2017 4 commits
  12. 07 Aug, 2017 4 commits
  13. 04 Aug, 2017 1 commit
    • rouzier's avatar
      [c++] Add support for boolean types in flexbuffers (#4386) · a2b1bfc1
      rouzier authored
      * Add support for boolean types in flexbuffers
      
      * Simplify casting number <=> boolean
      
      * Added comments for tests
      
      * Add proper support for Booleans
      
      * Bad rebase
      
      * No special case for strings
      
      * Removed unused test
      
      * Simplify logic
      a2b1bfc1
  14. 02 Aug, 2017 1 commit
  15. 01 Aug, 2017 1 commit
    • Kevin Rose's avatar
      [Python] (scalar) vector reading speedup via numpy (#4390) · 3282a84e
      Kevin Rose authored
      * Add numpy accessor to python flatbuffers scalar vectors
      
      * Update python tests to test numpy vector accessor
      
      * Update appveyor CI to run Python tests, save generated code as artifact
      
      * Update example generated python code
      
      * Add numpy info to python usage docs
      
      * Update test schema and python tests w/ multi-byte vector
      
      * did not mean to push profiling code
      
      * adding float64 numpy tests
      3282a84e