- 20 Aug, 2019 2 commits
-
-
Wouter van Oortmerssen authored
Change-Id: Iaa0633167c2a4d4543fc4de2af58112d60d5d1e6
-
Wes McKinney authored
-Wextra-semi-stmt warning when building with Clang 8.0.0. Update generated files for testing
-
- 19 Aug, 2019 3 commits
-
-
Tsingson authored
* add Name() for ForceCodec interface // ForceCodec returns a CallOption that will set the given Codec to be // used for all request and response messages for a call. The result of calling // String() will be used as the content-subtype in a case-insensitive manner. // * Update grpc.go
-
Mark Nauwelaerts authored
... to avoid assertion failure or invalid access due to invalid vector index
-
Edward authored
has_method support for primitive fields in java runtime. Changed: idl.h, FlatBufferBuilder.java , idl_gen_general.cpp, idl_parser.cpp, flatc.cpp (#5468) * has_method support for primitive fields in java runtime * adding the new flag to flatc * addressing the review comments
-
- 05 Aug, 2019 1 commit
-
-
Max Burke authored
Local variables were shadowing member fields, causing errors.
-
- 01 Aug, 2019 3 commits
-
-
Alexey Geraskin authored
* [C++] remove static_cast expression * [C++] Add unit test for native_type usage * [C++] Add flatc compilation for native_type_test.fbs * [C++] update CMakeLists to compile native_type_test.fbs properly * Update BUILD file for bazel * [C++] Add generated native_type_test_generated.h and fix arguments for flatc according to CMakeList * [C++] remove "= default" from constructor to support old compilers * Update BUILD file for bazel, attempt 2 * [C++] Workaround for MSVC 2010 for the issue with std::vector and explicitly aligned custom data types * Update BUILD file for bazel, attempt 3 * Update BUILD file for bazel, attempt 4 * Update BUILD file for bazel, attempt 5 * Update BUILD file for bazel, attempt 6 * [C++] Workaround for MSVC 2010 for the issue with std::vector and explicitly aligned custom data types Part 2 * [C++] Keep only one optional parameter to compile_flatbuffers_schema_to_cpp_opt * native_type_test.fbs style corrected * [C++] Code style modifications * [C++] Fix flatc arguments in CMakeLists * [C++] Remove --gen-compare from default parameters for flatc in CMakeLists * [C++] Change Vector3D fields from double to float, to have alignment eq. 4 (to support MSVC 2010), plus minor review fix * [C++] Remove one more #if !defined * [C++] Restore version with correct static_cast, add the same fix for SortedStructs * Revert "[C++] Restore version with correct static_cast, add the same fix for SortedStructs" This reverts commit d61f4d6628cfce530c8b9a4c9e7af368d599f99f. * [C++] Fix Android.mk
-
ll-antn authored
* Support output_enum_identifiers for enums with multiple bit values * Cast bit_flag enum val to uint64_t instead of int64_t
-
Derek Bailey authored
The packing/unpacking steps for Boolean values was failing because the code expected numerical values. I overrode the functions for the Boolean metatable to account for this. I also had to exclude the Boolean metatable from the GenerateTypes helper function, as that was overriding the Pack/Unpack functions defined in its metatable. Added Linux bash script to run Lua tests from the command line. Bug: google/flatbuffers#5379 Tested: Added Lua tests that were failing and are now fixed with the code changes.
-
- 29 Jul, 2019 2 commits
-
-
Wouter van Oortmerssen authored
Change-Id: Iea88624d9d90e029a64cab9edf4e7c1cfc005e4a
-
Vladimir Glavnyy authored
-
- 27 Jul, 2019 3 commits
-
-
Wouter van Oortmerssen authored
-
Vladimir Glavnyy authored
* Extend the error message if base type of parsed scalar not resolved #5447 * Resolve PR notes
-
Wouter van Oortmerssen authored
See https://probot.github.io/apps/stale/ Change-Id: I8176eeb21dbcd516f1d6f7b1e8c28602cdd9332a
-
- 26 Jul, 2019 4 commits
-
-
Joseph Pyott authored
* Python: Added support for file_identifiers * Added tests. Fixed file_identifier code. * Python: Fixed excessive padding of file_identifier. Repaired tests. * Python: Made code compatible with python2.7 * Python: Typo fix in @endcond * whitespace normaalization * Stylistic change from if(not X is None) to if(X is not None). Added comment to type string. * Python: Added support for automatic code generation of file_identifiers. Added tests for said code generation. * converted sprintf to snprintf * Bugfix, added snprint deffinition for MSVC * changed snprint deffinition for MSVC to sprint_s * changed scanf to IntToStringHex. Renamed HasFileIdentifier to GenHasFileIdentifier. * Added updated genereated code to commit * Python bugix: flatc no longer produces HasFileIdentfier for shcemas with no file identifier * Added tests to verify `MonsterBufferHasIdentifier` returns false on no Identifier * Python: added tests for GetBufferIdentifier and BufferHasIdentifier Python: removed unessasary parenethesis in if statements Minor format changes. * Python : correceted instances of keyword arguments being called as positional arguments * fixed typos and grammer in comments * Minor style fixes * Indentation fix * Equals style changes * Python: Fixed Alignment Issues. Changed test code to test against atual output * Ran make(forgot to run make last commit) * Python: Style changes * Style changes * indentation and style * readded CONTRIBUTING.md * Formatting tweak Mostly to make CI run again * More formatting fixes * More formatting fixes * More formatting fixes * More formatting fixes * Formatting fix * More formatting fixes * Formatting * ran generate_code.sh
-
ll-antn authored
-
ll-antn authored
-
Stewart Miles authored
r17c is the last Android NDK to include stlport and gnustl. We want to continue to support these deprecated STLs until we have confidence few enough customers are using them.
-
- 25 Jul, 2019 3 commits
-
-
Jason Monschke authored
-
Wouter van Oortmerssen authored
Change-Id: I7eeee6519b6dc619691437e44272cf5424d0d4ca
-
Uilian Ries authored
* #4590 Fix Conan build - Create separated build for Conan on master branch - Add Clang 7,8 - Add Gcc 9 Signed-off-by:
Uilian Ries <uilianries@gmail.com> * #4590 Do not build Conan for PRs Signed-off-by:
Uilian Ries <uilianries@gmail.com>
-
- 22 Jul, 2019 1 commit
-
-
Paulo Pinheiro authored
* [Kotlin] Add kotlin generate code for tests and add kotlin test to TestAll.sh * [Kotlin] Add Kotlin generator This change adds support for generating Kotlin classes. The approach of this generator is to keep it as close as possible to the java generator for now, in order to keep the change simple. It uses the already implemented java runtime, so we don't support cross-platform nor js Kotlin yet. Kotlin tests are just a copy of the java tests. * Add optional ident support for CodeWriter Identation is important for some languages and different projects have different ways of ident code, e.g. tabs vs spaces, so we are adding optional support on CodeWriter for identation. * [Kotlin] Add Documentation for Kotlin * [Kotlin] Modify generated code to use experimental Unsigned types.
-
- 18 Jul, 2019 1 commit
-
-
Alexey Geraskin authored
-
- 09 Jul, 2019 1 commit
-
-
jean-airoldie authored
-
- 08 Jul, 2019 1 commit
-
-
Vladimir Glavnyy authored
* Extend the test of MonsterExtra - Extend C++ test of MonsterExtra - Add conversion of fbs/json NaNs to unsigned quiet-NaN - Update documentation (cross-platform interoperability) * Fix declaration of infinity constants int the test
-
- 01 Jul, 2019 2 commits
-
-
Thanabodee Charoenpiriyakij authored
When running GoTest.sh, the last step that checking go format files are print \n instead of new line: These files are not well gofmt'ed:\n\nMyGame/Example/Color.go MyGame/Example/MonsterStorage_grpc.go This changes fix it by echo NOT_FMT_FILES in separate line.
-
Vladimir Glavnyy authored
- Fix GenerateTextFromTable (aliasing typo) - Fix unused variable in idl_gen_dart.cpp - Fix std::string passing (should be non-const value or const-reference) - Remove unused variables
-
- 27 Jun, 2019 3 commits
-
-
Andrew Noyes authored
* Fix undefined behavior. Closes #5422 * Move check into callers of make_space
-
Edward authored
Provide more detailed exception message for malformed 2 byte utf8 character
-
Adrian Perez authored
-
- 25 Jun, 2019 2 commits
-
-
Vladimir Glavnyy authored
-
Bryan Furia authored
-
- 24 Jun, 2019 2 commits
-
-
Wouter van Oortmerssen authored
This would not correctly encode/decode strings when substituted for the default Utf8Safe.java Change-Id: Ib303697663b5b8cbf6888492f5255b2a45384c04
-
Bryan Furia authored
-
- 20 Jun, 2019 2 commits
-
-
Austin Schuh authored
rules_go was too old and using deprecated features. Upgrade it.
-
Wouter van Oortmerssen authored
Change-Id: I249140119e6241beb5aec5670d0e5ccddc8f5251
-
- 17 Jun, 2019 2 commits
-
-
svenk177 authored
-
Vladimir Glavnyy authored
* Add FLATBUFFERS_COMPATIBILITY string - Add a new __reset method NET/JAVA which hides internal state * Resolve PR notes * Use operator new() to __init of Struct and Table * Restrict visibility of C# Table/Struct to internal level
-
- 14 Jun, 2019 2 commits
-
-
John Luxford authored
* [C#] Fixes issue #5399 by always including namespaces * Updated tests for code generator changes * Fixed 'As' method names
-
John Luxford authored
-