1. 02 Oct, 2017 1 commit
  2. 25 Sep, 2017 1 commit
  3. 22 Sep, 2017 2 commits
  4. 21 Sep, 2017 2 commits
    • endorph-soft's avatar
      Add constant accessors to C++ unions (#4433) · 21a81219
      endorph-soft authored
      * Add constant accessors to C++ unions
      
      * Remove redundant const pointer return type
      
      * Update generate_code.bat to reflect generate_code.sh
      
      * Add updated generated files
      
      * Remove extra space from generated code
      
      * Update generated files
      
      * Change directory back to tests after generating code
      21a81219
    • 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
  5. 14 Sep, 2017 2 commits
  6. 12 Sep, 2017 1 commit
  7. 07 Sep, 2017 2 commits
  8. 31 Aug, 2017 2 commits
  9. 25 Aug, 2017 2 commits
  10. 24 Aug, 2017 3 commits
  11. 17 Aug, 2017 1 commit
  12. 14 Aug, 2017 11 commits
  13. 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
  14. 10 Aug, 2017 4 commits
  15. 07 Aug, 2017 2 commits