mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-25 17:18:39 +00:00
Flatbuffers Version 23.1.20 (#7794)
* Flatbuffers Version 23.1.20 * Fix warnings * Fix warnings
This commit is contained in:
@@ -151,7 +151,7 @@ public struct IntValue : IFlatbufferObject
|
||||
{
|
||||
private Table __p;
|
||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_1_4(); }
|
||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_1_20(); }
|
||||
public static IntValue GetRootAsIntValue(ByteBuffer _bb) { return GetRootAsIntValue(_bb, new IntValue()); }
|
||||
public static IntValue GetRootAsIntValue(ByteBuffer _bb, IntValue obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
||||
@@ -202,7 +202,7 @@ public struct Collision : IFlatbufferObject
|
||||
{
|
||||
private Table __p;
|
||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_1_4(); }
|
||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_1_20(); }
|
||||
public static Collision GetRootAsCollision(ByteBuffer _bb) { return GetRootAsCollision(_bb, new Collision()); }
|
||||
public static Collision GetRootAsCollision(ByteBuffer _bb, Collision obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
||||
|
||||
Reference in New Issue
Block a user