From 71d30d5c0282d23ebaaf2100f34c681ea9a1f071 Mon Sep 17 00:00:00 2001 From: Raman Date: Sat, 9 Jul 2016 12:28:02 +0200 Subject: [PATCH] Update idl.h --- include/flatbuffers/idl.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/flatbuffers/idl.h b/include/flatbuffers/idl.h index d5dee17af..dddfab25c 100644 --- a/include/flatbuffers/idl.h +++ b/include/flatbuffers/idl.h @@ -646,12 +646,10 @@ extern bool GenerateGeneral(const Parser &parser, // Generate a schema file from the internal representation, useful after // parsing a .proto schema. extern std::string GenerateFBS(const Parser &parser, - const std::string &file_name, - const bool &escape_proto_identifiers); + const std::string &file_name); extern bool GenerateFBS(const Parser &parser, const std::string &path, - const std::string &file_name, - const bool &escape_proto_identifiers); + const std::string &file_name); // Generate a make rule for the generated JavaScript code. // See idl_gen_js.cpp.