mirror of
https://github.com/google/flatbuffers.git
synced 2026-07-02 20:18:18 +00:00
Flatbuffers Version 2.0.7 (#7462)
This commit is contained in:
22
CHANGELOG.md
Normal file
22
CHANGELOG.md
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# Flatbuffers Change Log
|
||||||
|
|
||||||
|
All major or breaking changes will be documented in this file, as well as any
|
||||||
|
new features that should be highlighted. Minor fixes or improvements are not
|
||||||
|
necessarily listed.
|
||||||
|
|
||||||
|
## 2.0.7 (Aug 22 2022)
|
||||||
|
|
||||||
|
* This is the first version with an explicit change log, so all the previous
|
||||||
|
features will not be listed.
|
||||||
|
|
||||||
|
* Verifier now checks that buffers are at least the minimum size required to be
|
||||||
|
a flatbuffers (12 bytes). This includes nested flatbuffers, which previously
|
||||||
|
could be declared valid at size 0.
|
||||||
|
|
||||||
|
* Annotated binaries. Given a flatbuffer binary and a schema (or binary schema)
|
||||||
|
one can generate an annotated flatbuffer (.afb) to describe each byte in the
|
||||||
|
binary with schema metadata and value.
|
||||||
|
|
||||||
|
* First binary schema generator (Lua) to generate Lua code via a .bfbs file.
|
||||||
|
This is mostly an implementation detail of flatc internals, but will be slowly
|
||||||
|
applied to the other language generators.
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
set(VERSION_MAJOR 2)
|
set(VERSION_MAJOR 2)
|
||||||
set(VERSION_MINOR 0)
|
set(VERSION_MINOR 0)
|
||||||
set(VERSION_PATCH 6)
|
set(VERSION_PATCH 7)
|
||||||
set(VERSION_COMMIT 0)
|
set(VERSION_COMMIT 0)
|
||||||
|
|
||||||
find_program(GIT git)
|
find_program(GIT git)
|
||||||
|
|||||||
@@ -140,7 +140,7 @@
|
|||||||
|
|
||||||
#define FLATBUFFERS_VERSION_MAJOR 2
|
#define FLATBUFFERS_VERSION_MAJOR 2
|
||||||
#define FLATBUFFERS_VERSION_MINOR 0
|
#define FLATBUFFERS_VERSION_MINOR 0
|
||||||
#define FLATBUFFERS_VERSION_REVISION 6
|
#define FLATBUFFERS_VERSION_REVISION 7
|
||||||
#define FLATBUFFERS_STRING_EXPAND(X) #X
|
#define FLATBUFFERS_STRING_EXPAND(X) #X
|
||||||
#define FLATBUFFERS_STRING(X) FLATBUFFERS_STRING_EXPAND(X)
|
#define FLATBUFFERS_STRING(X) FLATBUFFERS_STRING_EXPAND(X)
|
||||||
namespace flatbuffers {
|
namespace flatbuffers {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace reflection {
|
namespace reflection {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace MyGame {
|
namespace MyGame {
|
||||||
|
|||||||
@@ -94,7 +94,7 @@ def flatc_reflection(options, location, target):
|
|||||||
new_reflection_path = Path(reflection_path, temp_dir, target)
|
new_reflection_path = Path(reflection_path, temp_dir, target)
|
||||||
original_reflection_path = Path(root_path, location, target)
|
original_reflection_path = Path(root_path, location, target)
|
||||||
if not filecmp.cmp(str(new_reflection_path), str(original_reflection_path)):
|
if not filecmp.cmp(str(new_reflection_path), str(original_reflection_path)):
|
||||||
shutil.rmtree(str(original_reflection_path))
|
shutil.rmtree(str(original_reflection_path), ignore_errors=True)
|
||||||
shutil.move(str(new_reflection_path), str(original_reflection_path))
|
shutil.move(str(new_reflection_path), str(original_reflection_path))
|
||||||
shutil.rmtree(str(Path(reflection_path, temp_dir)))
|
shutil.rmtree(str(Path(reflection_path, temp_dir)))
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //monster_test.fbs
|
Declared by : //monster_test.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //include_test/sub/include_test2.fbs
|
Declared by : //include_test/sub/include_test2.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //include_test/sub/include_test2.fbs
|
Declared by : //include_test/sub/include_test2.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //include_test/sub/include_test2.fbs
|
Declared by : //include_test/sub/include_test2.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Automatically generated by the FlatBuffers compiler, do not modify.
|
Automatically generated by the FlatBuffers compiler, do not modify.
|
||||||
Or modify. I'm a message, not a cop.
|
Or modify. I'm a message, not a cop.
|
||||||
|
|
||||||
flatc version: 2.0.6
|
flatc version: 2.0.7
|
||||||
|
|
||||||
Declared by : //include_test/include_test1.fbs
|
Declared by : //include_test/include_test1.fbs
|
||||||
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
Rooting type : MyGame.Example.Monster (//monster_test.fbs)
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace MyGame {
|
namespace MyGame {
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace MyGame {
|
namespace MyGame {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace optional_scalars {
|
namespace optional_scalars {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
struct Attacker;
|
struct Attacker;
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace Evolution {
|
namespace Evolution {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace Evolution {
|
namespace Evolution {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace MyGame {
|
namespace MyGame {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace MyGame {
|
namespace MyGame {
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace MyGame {
|
namespace MyGame {
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace MyGame {
|
namespace MyGame {
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace MyGame {
|
namespace MyGame {
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace MyGame {
|
namespace MyGame {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace NamespaceA {
|
namespace NamespaceA {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace NamespaceA {
|
namespace NamespaceA {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
#include "native_type_test_impl.h"
|
#include "native_type_test_impl.h"
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
namespace optional_scalars {
|
namespace optional_scalars {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// generated, otherwise it may not be compatible.
|
// generated, otherwise it may not be compatible.
|
||||||
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
static_assert(FLATBUFFERS_VERSION_MAJOR == 2 &&
|
||||||
FLATBUFFERS_VERSION_MINOR == 0 &&
|
FLATBUFFERS_VERSION_MINOR == 0 &&
|
||||||
FLATBUFFERS_VERSION_REVISION == 6,
|
FLATBUFFERS_VERSION_REVISION == 7,
|
||||||
"Non-compatible flatbuffers version included");
|
"Non-compatible flatbuffers version included");
|
||||||
|
|
||||||
struct Attacker;
|
struct Attacker;
|
||||||
|
|||||||
Reference in New Issue
Block a user