From 426f3b8bf2ee9c0bdfd48cd1d3a0145d969d5714 Mon Sep 17 00:00:00 2001 From: Wouter van Oortmerssen Date: Thu, 11 May 2023 18:26:06 -0700 Subject: [PATCH] Missing GenTextFile decl --- include/flatbuffers/idl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/flatbuffers/idl.h b/include/flatbuffers/idl.h index e4a56607f..e1008a73c 100644 --- a/include/flatbuffers/idl.h +++ b/include/flatbuffers/idl.h @@ -1218,6 +1218,8 @@ extern const char *GenTextFromTable(const Parser &parser, const void *table, std::string *text); extern const char *GenText(const Parser &parser, const void *flatbuffer, std::string *text); +extern const char *GenTextFile(const Parser &parser, const std::string &path, + const std::string &file_name); // Generate GRPC Cpp interfaces. // See idl_gen_grpc.cpp.