diff options
| author | Pimyn Girgis <pimyn@google.com> | 2025-12-02 12:28:10 +0000 |
|---|---|---|
| committer | Tahuti <pimyn@google.com> | 2025-12-03 09:02:54 +0000 |
| commit | 1cfbf16e320ca9bdadd9c24eb1d2d68b25369ba6 (patch) | |
| tree | be0ce827f327c8a76125307e64047e01fa449d4c /executor/_include/flatbuffers/registry.h | |
| parent | 42a04216dd856c12e723e48930e85d63998e4eda (diff) | |
executor: update flatbuffers
Update flatbuffers to v23.5.26, which matches the compiler version in the new env container.
Diffstat (limited to 'executor/_include/flatbuffers/registry.h')
| -rw-r--r-- | executor/_include/flatbuffers/registry.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/executor/_include/flatbuffers/registry.h b/executor/_include/flatbuffers/registry.h index e8bb8f5e3..f59aa647d 100644 --- a/executor/_include/flatbuffers/registry.h +++ b/executor/_include/flatbuffers/registry.h @@ -52,8 +52,10 @@ class Registry { Parser parser; if (!LoadSchema(ident, &parser)) return false; // Now we're ready to generate text. - if (!GenerateText(parser, flatbuf, dest)) { - lasterror_ = "unable to generate text for FlatBuffer binary"; + auto err = GenText(parser, flatbuf, dest); + if (err) { + lasterror_ = + "unable to generate text for FlatBuffer binary: " + std::string(err); return false; } return true; |
