FlatBuffers Version 25.9.23 (#8708)

This commit is contained in:
Derek Bailey
2025-09-23 22:18:02 -07:00
committed by GitHub
parent c427e1a65d
commit 1872409707
185 changed files with 271 additions and 268 deletions

View File

@@ -13,7 +13,7 @@ public struct TableInC : IFlatbufferObject
{
private Table __p;
public ByteBuffer ByteBuffer { get { return __p.bb; } }
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_25_2_10(); }
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_25_9_23(); }
public static TableInC GetRootAsTableInC(ByteBuffer _bb) { return GetRootAsTableInC(_bb, new TableInC()); }
public static TableInC GetRootAsTableInC(ByteBuffer _bb, TableInC obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }

View File

@@ -9,7 +9,7 @@ import java.util.*;
@SuppressWarnings("unused")
public final class TableInC extends Table {
public static void ValidateVersion() {
Constants.FLATBUFFERS_25_2_10();
Constants.FLATBUFFERS_25_9_23();
}
public static TableInC getRootAsTableInC(ByteBuffer _bb) {

View File

@@ -46,7 +46,7 @@ class TableInC : Table() {
}
companion object {
fun validateVersion() = Constants.FLATBUFFERS_25_2_10()
fun validateVersion() = Constants.FLATBUFFERS_25_9_23()
fun getRootAsTableInC(_bb: ByteBuffer): TableInC = getRootAsTableInC(_bb, TableInC())