From 1cfbf16e320ca9bdadd9c24eb1d2d68b25369ba6 Mon Sep 17 00:00:00 2001 From: Pimyn Girgis Date: Tue, 2 Dec 2025 12:28:10 +0000 Subject: executor: update flatbuffers Update flatbuffers to v23.5.26, which matches the compiler version in the new env container. --- executor/_include/flatbuffers/minireflect.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'executor/_include/flatbuffers/minireflect.h') diff --git a/executor/_include/flatbuffers/minireflect.h b/executor/_include/flatbuffers/minireflect.h index 26fd86c96..1e04bfff0 100644 --- a/executor/_include/flatbuffers/minireflect.h +++ b/executor/_include/flatbuffers/minireflect.h @@ -407,8 +407,9 @@ struct ToStringVisitor : public IterationVisitor { inline std::string FlatBufferToString(const uint8_t *buffer, const TypeTable *type_table, bool multi_line = false, - bool vector_delimited = true) { - ToStringVisitor tostring_visitor(multi_line ? "\n" : " ", false, "", + bool vector_delimited = true, + const std::string &indent = "") { + ToStringVisitor tostring_visitor(multi_line ? "\n" : " ", false, indent, vector_delimited); IterateFlatBuffer(buffer, type_table, &tostring_visitor); return tostring_visitor.s; -- cgit mrf-deployment