From 35f0b41fedf445aeb1b367ec6c7daf29f03b8e8e Mon Sep 17 00:00:00 2001 From: Frank Benkstein Date: Fri, 12 Oct 2018 00:54:01 +0200 Subject: [PATCH] fix missing newline in flatc help message (#4992) --- src/flatc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flatc.cpp b/src/flatc.cpp index 49bee42..9cba05c 100644 --- a/src/flatc.cpp +++ b/src/flatc.cpp @@ -124,7 +124,7 @@ std::string FlatCompiler::GetUsageString(const char *program_name) const { " --reflect-names Add minimal type/name reflection.\n" " --root-type T Select or override the default root_type\n" " --force-defaults Emit default values in binary output from JSON\n" - " --force-empty When serializing from object API representation, " + " --force-empty When serializing from object API representation,\n" " force strings and vectors to empty rather than null.\n" "FILEs may be schemas (must end in .fbs), or JSON files (conforming to preceding\n" "schema). FILEs after the -- must be binary flatbuffer format files.\n" -- 2.7.4