Skip to content

Commit 1703662

Browse files
authored
Flatbuffers Version 23.1.20 (#7794)
* Flatbuffers Version 23.1.20 * Fix warnings * Fix warnings
1 parent 991b39e commit 1703662

File tree

164 files changed

+224
-220
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+224
-220
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All major or breaking changes will be documented in this file, as well as any
44
new features that should be highlighted. Minor fixes or improvements are not
55
necessarily listed.
66

7+
## [23.1.20 (Jan 20 2023)](https://github.com/google/flatbuffers/releases/tag/v23.1.20)
8+
9+
* Removed go.mod files after some versioning issues were being report ([#7780](https://github.com/google/flatbuffers/issues/7780)).
10+
711
## [23.1.4 (Jan 4 2023)](https://github.com/google/flatbuffers/releases/tag/v23.1.4)
812

913
* Major release! Just kidding, we are continuing the

CMake/Version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set(VERSION_MAJOR 23)
22
set(VERSION_MINOR 1)
3-
set(VERSION_PATCH 4)
3+
set(VERSION_PATCH 20)
44
set(VERSION_COMMIT 0)
55

66
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git")

FlatBuffers.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FlatBuffers'
3-
s.version = '23.1.4'
3+
s.version = '23.1.20'
44
s.summary = 'FlatBuffers: Memory Efficient Serialization Library'
55

66
s.description = "FlatBuffers is a cross platform serialization library architected for

android/app/src/main/java/generated/com/fbs/app/Animal.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Animal : Table() {
4848
return if(o != 0) bb.getShort(o + bb_pos).toUShort() else 0u
4949
}
5050
companion object {
51-
fun validateVersion() = Constants.FLATBUFFERS_23_1_4()
51+
fun validateVersion() = Constants.FLATBUFFERS_23_1_20()
5252
fun getRootAsAnimal(_bb: ByteBuffer): Animal = getRootAsAnimal(_bb, Animal())
5353
fun getRootAsAnimal(_bb: ByteBuffer, obj: Animal): Animal {
5454
_bb.order(ByteOrder.LITTLE_ENDIAN)

dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flat_buffers
2-
version: 23.1.4
2+
version: 23.1.20
33
description: FlatBuffers reading and writing library for Dart. Based on original work by Konstantin Scheglov and Paul Berry of the Dart SDK team.
44
homepage: https://github.com/google/flatbuffers
55
documentation: https://google.github.io/flatbuffers/index.html

grpc/examples/swift/Greeter/Sources/Model/greeter_generated.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import FlatBuffers
66

77
public struct models_HelloReply: FlatBufferObject, Verifiable {
88

9-
static func validateVersion() { FlatBuffersVersion_23_1_4() }
9+
static func validateVersion() { FlatBuffersVersion_23_1_20() }
1010
public var __buffer: ByteBuffer! { return _accessor.bb }
1111
private var _accessor: Table
1212

@@ -53,7 +53,7 @@ extension models_HelloReply: Encodable {
5353

5454
public struct models_HelloRequest: FlatBufferObject, Verifiable {
5555

56-
static func validateVersion() { FlatBuffersVersion_23_1_4() }
56+
static func validateVersion() { FlatBuffersVersion_23_1_20() }
5757
public var __buffer: ByteBuffer! { return _accessor.bb }
5858
private var _accessor: Table
5959

include/flatbuffers/base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140

141141
#define FLATBUFFERS_VERSION_MAJOR 23
142142
#define FLATBUFFERS_VERSION_MINOR 1
143-
#define FLATBUFFERS_VERSION_REVISION 4
143+
#define FLATBUFFERS_VERSION_REVISION 20
144144
#define FLATBUFFERS_STRING_EXPAND(X) #X
145145
#define FLATBUFFERS_STRING(X) FLATBUFFERS_STRING_EXPAND(X)
146146
namespace flatbuffers {

include/flatbuffers/reflection_generated.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// generated, otherwise it may not be compatible.
1111
static_assert(FLATBUFFERS_VERSION_MAJOR == 23 &&
1212
FLATBUFFERS_VERSION_MINOR == 1 &&
13-
FLATBUFFERS_VERSION_REVISION == 4,
13+
FLATBUFFERS_VERSION_REVISION == 20,
1414
"Non-compatible flatbuffers version included");
1515

1616
namespace reflection {

java/src/main/java/com/google/flatbuffers/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class Constants {
4646
Changes to the Java implementation need to be sure to change
4747
the version here and in the code generator on every possible
4848
incompatible change */
49-
public static void FLATBUFFERS_23_1_4() {}
49+
public static void FLATBUFFERS_23_1_20() {}
5050
}
5151

5252
/// @endcond

net/FlatBuffers/FlatBufferConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ the runtime and generated code are modified in sync.
3232
Changes to the C# implementation need to be sure to change
3333
the version here and in the code generator on every possible
3434
incompatible change */
35-
public static void FLATBUFFERS_23_1_4() {}
35+
public static void FLATBUFFERS_23_1_20() {}
3636
}
3737
}

net/FlatBuffers/Google.FlatBuffers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.1;netstandard2.0;net46</TargetFrameworks>
55
<Description>A cross-platform memory efficient serialization library</Description>
6-
<PackageVersion>23.1.4</PackageVersion>
6+
<PackageVersion>23.1.20</PackageVersion>
77
<Authors>Google LLC</Authors>
88
<PackageProjectUrl>https://github.com/google/flatbuffers</PackageProjectUrl>
99
<RepositoryUrl>https://github.com/google/flatbuffers</RepositoryUrl>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flatbuffers",
3-
"version": "23.1.4",
3+
"version": "23.1.20",
44
"description": "Memory Efficient Serialization Library",
55
"files": [
66
"js/**/*.js",

python/flatbuffers/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# Placeholder, to be updated during the release process
1616
# by the setup.py
17-
__version__ = u"23.1.4"
17+
__version__ = u"23.1.20"

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
setup(
1818
name='flatbuffers',
19-
version='23.1.4',
19+
version='23.1.20',
2020
license='Apache 2.0',
2121
license_files='../LICENSE.txt',
2222
author='Derek Bailey',

rust/flatbuffers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flatbuffers"
3-
version = "23.1.4"
3+
version = "23.1.20"
44
edition = "2018"
55
authors = ["Robert Winslow <[email protected]>", "FlatBuffers Maintainers"]
66
license = "Apache-2.0"

samples/monster_generated.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// generated, otherwise it may not be compatible.
1111
static_assert(FLATBUFFERS_VERSION_MAJOR == 23 &&
1212
FLATBUFFERS_VERSION_MINOR == 1 &&
13-
FLATBUFFERS_VERSION_REVISION == 4,
13+
FLATBUFFERS_VERSION_REVISION == 20,
1414
"Non-compatible flatbuffers version included");
1515

1616
namespace MyGame {

samples/monster_generated.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public enum MyGame_Sample_Equipment: UInt8, UnionEnum {
3636

3737
public struct MyGame_Sample_Vec3: NativeStruct, Verifiable, FlatbuffersInitializable {
3838

39-
static func validateVersion() { FlatBuffersVersion_23_1_4() }
39+
static func validateVersion() { FlatBuffersVersion_23_1_20() }
4040

4141
private var _x: Float32
4242
private var _y: Float32
@@ -72,7 +72,7 @@ public struct MyGame_Sample_Vec3: NativeStruct, Verifiable, FlatbuffersInitializ
7272

7373
public struct MyGame_Sample_Vec3_Mutable: FlatBufferObject {
7474

75-
static func validateVersion() { FlatBuffersVersion_23_1_4() }
75+
static func validateVersion() { FlatBuffersVersion_23_1_20() }
7676
public var __buffer: ByteBuffer! { return _accessor.bb }
7777
private var _accessor: Struct
7878

@@ -88,7 +88,7 @@ public struct MyGame_Sample_Vec3_Mutable: FlatBufferObject {
8888

8989
public struct MyGame_Sample_Monster: FlatBufferObject, Verifiable {
9090

91-
static func validateVersion() { FlatBuffersVersion_23_1_4() }
91+
static func validateVersion() { FlatBuffersVersion_23_1_20() }
9292
public var __buffer: ByteBuffer! { return _accessor.bb }
9393
private var _accessor: Table
9494

@@ -200,7 +200,7 @@ public struct MyGame_Sample_Monster: FlatBufferObject, Verifiable {
200200

201201
public struct MyGame_Sample_Weapon: FlatBufferObject, Verifiable {
202202

203-
static func validateVersion() { FlatBuffersVersion_23_1_4() }
203+
static func validateVersion() { FlatBuffersVersion_23_1_20() }
204204
public var __buffer: ByteBuffer! { return _accessor.bb }
205205
private var _accessor: Table
206206

src/annotated_binary_text_gen.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ static std::string GenerateDocumentation(const BinaryRegion &region,
278278

279279
{
280280
std::stringstream ss;
281-
ss << std::setw(output_config.largest_type_string) << std::left;
281+
ss << std::setw(static_cast<int>(output_config.largest_type_string)) << std::left;
282282
ss << GenerateTypeString(region);
283283
s += ss.str();
284284
}
@@ -293,15 +293,15 @@ static std::string GenerateDocumentation(const BinaryRegion &region,
293293
const std::string value = ToValueString(region, binary, output_config);
294294

295295
std::stringstream ss;
296-
ss << std::setw(output_config.largest_value_string) << std::left;
296+
ss << std::setw(static_cast<int>(output_config.largest_value_string)) << std::left;
297297
ss << value.substr(0, output_config.max_bytes_per_line);
298298
s += ss.str();
299299

300300
continuation.value =
301301
value.substr(std::min(output_config.max_bytes_per_line, value.size()));
302302
} else {
303303
std::stringstream ss;
304-
ss << std::setw(output_config.largest_value_string) << std::left;
304+
ss << std::setw(static_cast<int>(output_config.largest_value_string)) << std::left;
305305
ss << ToValueString(region, binary, output_config);
306306
s += ss.str();
307307
}

src/binary_annotator.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ enum class BinaryRegionType {
5252
template<typename T>
5353
static inline std::string ToHex(T i, size_t width = sizeof(T)) {
5454
std::stringstream stream;
55-
stream << std::hex << std::uppercase << std::setfill('0') << std::setw(width)
55+
stream << std::hex << std::uppercase << std::setfill('0') << std::setw(static_cast<int>(width))
5656
<< i;
5757
return stream.str();
5858
}
5959

6060
// Specialized version for uint8_t that don't work well with std::hex.
6161
static inline std::string ToHex(uint8_t i) {
62-
return ToHex(static_cast<int>(i), 2);
62+
return ToHex<int>(static_cast<int>(i), 2);
6363
}
6464

6565
enum class BinaryRegionStatus {

src/idl_gen_csharp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ class CSharpGenerator : public BaseGenerator {
655655
// Force compile time error if not using the same version runtime.
656656
code += " public static void ValidateVersion() {";
657657
code += " FlatBufferConstants.";
658-
code += "FLATBUFFERS_23_1_4(); ";
658+
code += "FLATBUFFERS_23_1_20(); ";
659659
code += "}\n";
660660

661661
// Generate a special accessor for the table that when used as the root

src/idl_gen_java.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ class JavaGenerator : public BaseGenerator {
683683
// Force compile time error if not using the same version runtime.
684684
code += " public static void ValidateVersion() {";
685685
code += " Constants.";
686-
code += "FLATBUFFERS_23_1_4(); ";
686+
code += "FLATBUFFERS_23_1_20(); ";
687687
code += "}\n";
688688

689689
// Generate a special accessor for the table that when used as the root

src/idl_gen_kotlin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ class KotlinGenerator : public BaseGenerator {
524524
// runtime.
525525
GenerateFunOneLine(
526526
writer, "validateVersion", "", "",
527-
[&]() { writer += "Constants.FLATBUFFERS_23_1_4()"; },
527+
[&]() { writer += "Constants.FLATBUFFERS_23_1_20()"; },
528528
options.gen_jvmstatic);
529529

530530
GenerateGetRootAsAccessors(namer_.Type(struct_def), writer, options);

src/idl_gen_swift.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1840,7 +1840,7 @@ class SwiftGenerator : public BaseGenerator {
18401840
}
18411841

18421842
std::string ValidateFunc() {
1843-
return "static func validateVersion() { FlatBuffersVersion_23_1_4() }";
1843+
return "static func validateVersion() { FlatBuffersVersion_23_1_20() }";
18441844
}
18451845

18461846
std::string GenType(const Type &type,

swift/Sources/FlatBuffers/Constants.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@ extension UInt64: Scalar, Verifiable {
119119
public typealias NumericValue = UInt64
120120
}
121121

122-
public func FlatBuffersVersion_23_1_4() {}
122+
public func FlatBuffersVersion_23_1_20() {}

tests/Abc.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Automatically generated by the FlatBuffers compiler, do not modify.
33
Or modify. I'm a message, not a cop.
44
5-
flatc version: 23.1.4
5+
flatc version: 23.1.20
66
77
Declared by :
88
]#

tests/DictionaryLookup/LongFloatEntry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
@SuppressWarnings("unused")
2323
public final class LongFloatEntry extends Table {
24-
public static void ValidateVersion() { Constants.FLATBUFFERS_23_1_4(); }
24+
public static void ValidateVersion() { Constants.FLATBUFFERS_23_1_20(); }
2525
public static LongFloatEntry getRootAsLongFloatEntry(ByteBuffer _bb) { return getRootAsLongFloatEntry(_bb, new LongFloatEntry()); }
2626
public static LongFloatEntry getRootAsLongFloatEntry(ByteBuffer _bb, LongFloatEntry obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
2727
public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); }

tests/DictionaryLookup/LongFloatEntry.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class LongFloatEntry : Table() {
4545
return (val_1 - val_2).sign
4646
}
4747
companion object {
48-
fun validateVersion() = Constants.FLATBUFFERS_23_1_4()
48+
fun validateVersion() = Constants.FLATBUFFERS_23_1_20()
4949
fun getRootAsLongFloatEntry(_bb: ByteBuffer): LongFloatEntry = getRootAsLongFloatEntry(_bb, LongFloatEntry())
5050
fun getRootAsLongFloatEntry(_bb: ByteBuffer, obj: LongFloatEntry): LongFloatEntry {
5151
_bb.order(ByteOrder.LITTLE_ENDIAN)

tests/DictionaryLookup/LongFloatMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
@SuppressWarnings("unused")
2323
public final class LongFloatMap extends Table {
24-
public static void ValidateVersion() { Constants.FLATBUFFERS_23_1_4(); }
24+
public static void ValidateVersion() { Constants.FLATBUFFERS_23_1_20(); }
2525
public static LongFloatMap getRootAsLongFloatMap(ByteBuffer _bb) { return getRootAsLongFloatMap(_bb, new LongFloatMap()); }
2626
public static LongFloatMap getRootAsLongFloatMap(ByteBuffer _bb, LongFloatMap obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
2727
public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); }

tests/DictionaryLookup/LongFloatMap.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class LongFloatMap : Table() {
5959
}
6060
}
6161
companion object {
62-
fun validateVersion() = Constants.FLATBUFFERS_23_1_4()
62+
fun validateVersion() = Constants.FLATBUFFERS_23_1_20()
6363
fun getRootAsLongFloatMap(_bb: ByteBuffer): LongFloatMap = getRootAsLongFloatMap(_bb, LongFloatMap())
6464
fun getRootAsLongFloatMap(_bb: ByteBuffer, obj: LongFloatMap): LongFloatMap {
6565
_bb.order(ByteOrder.LITTLE_ENDIAN)

tests/KeywordTest/KeywordsInTable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public struct KeywordsInTable : IFlatbufferObject
1313
{
1414
private Table __p;
1515
public ByteBuffer ByteBuffer { get { return __p.bb; } }
16-
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_1_4(); }
16+
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_1_20(); }
1717
public static KeywordsInTable GetRootAsKeywordsInTable(ByteBuffer _bb) { return GetRootAsKeywordsInTable(_bb, new KeywordsInTable()); }
1818
public static KeywordsInTable GetRootAsKeywordsInTable(ByteBuffer _bb, KeywordsInTable obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
1919
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }

tests/KeywordTest/Table2.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public struct Table2 : IFlatbufferObject
1313
{
1414
private Table __p;
1515
public ByteBuffer ByteBuffer { get { return __p.bb; } }
16-
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_1_4(); }
16+
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_1_20(); }
1717
public static Table2 GetRootAsTable2(ByteBuffer _bb) { return GetRootAsTable2(_bb, new Table2()); }
1818
public static Table2 GetRootAsTable2(ByteBuffer _bb, Table2 obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
1919
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }

tests/MoreDefaults.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Automatically generated by the FlatBuffers compiler, do not modify.
33
Or modify. I'm a message, not a cop.
44
5-
flatc version: 23.1.4
5+
flatc version: 23.1.20
66
77
Declared by :
88
]#

tests/MyGame/Example/Ability.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Automatically generated by the FlatBuffers compiler, do not modify.
44
Or modify. I'm a message, not a cop.
55
6-
flatc version: 23.1.4
6+
flatc version: 23.1.20
77
88
Declared by : //monster_test.fbs
99
Rooting type : MyGame.Example.Monster (//monster_test.fbs)

tests/MyGame/Example/Ability.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Automatically generated by the FlatBuffers compiler, do not modify.
33
Or modify. I'm a message, not a cop.
44
5-
flatc version: 23.1.4
5+
flatc version: 23.1.20
66
77
Declared by :
88
Rooting type : MyGame.Example.Monster ()

tests/MyGame/Example/Any.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Automatically generated by the FlatBuffers compiler, do not modify.
44
Or modify. I'm a message, not a cop.
55
6-
flatc version: 23.1.4
6+
flatc version: 23.1.20
77
88
Declared by : //monster_test.fbs
99
Rooting type : MyGame.Example.Monster (//monster_test.fbs)

tests/MyGame/Example/Any.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Automatically generated by the FlatBuffers compiler, do not modify.
33
Or modify. I'm a message, not a cop.
44
5-
flatc version: 23.1.4
5+
flatc version: 23.1.20
66
77
Declared by :
88
Rooting type : MyGame.Example.Monster ()

tests/MyGame/Example/AnyAmbiguousAliases.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Automatically generated by the FlatBuffers compiler, do not modify.
44
Or modify. I'm a message, not a cop.
55
6-
flatc version: 23.1.4
6+
flatc version: 23.1.20
77
88
Declared by : //monster_test.fbs
99
Rooting type : MyGame.Example.Monster (//monster_test.fbs)

tests/MyGame/Example/AnyAmbiguousAliases.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Automatically generated by the FlatBuffers compiler, do not modify.
33
Or modify. I'm a message, not a cop.
44
5-
flatc version: 23.1.4
5+
flatc version: 23.1.20
66
77
Declared by :
88
Rooting type : MyGame.Example.Monster ()

0 commit comments

Comments
 (0)