diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2020-03-02 12:15:35 -0800 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2020-03-02 12:16:02 -0800 |
commit | 4749e77b0e9fb8d523babdcaeb3d41ea9a44748d (patch) | |
tree | 5abb9a2e50658407d5be6f0c97c6947675adfad2 | |
parent | 6ff1898413a56577bd2e9abd8280a79b1880bd53 (diff) | |
download | flatbuffers-4749e77b0e9fb8d523babdcaeb3d41ea9a44748d.tar.gz flatbuffers-4749e77b0e9fb8d523babdcaeb3d41ea9a44748d.tar.bz2 flatbuffers-4749e77b0e9fb8d523babdcaeb3d41ea9a44748d.zip |
Fixed docs on how to obtain parser error.
Change-Id: Ib3ffbdf51ef6af1f5c8267b84b84dceed9d4a838
-rw-r--r-- | docs/source/CppUsage.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/CppUsage.md b/docs/source/CppUsage.md index 7f08e710..6fec30c7 100644 --- a/docs/source/CppUsage.md +++ b/docs/source/CppUsage.md @@ -479,7 +479,7 @@ include paths. If not specified, any include statements try to resolve from the current directory. If there were any parsing errors, `Parse` will return `false`, and -`Parser::err` contains a human readable error string with a line number +`Parser::error_` contains a human readable error string with a line number etc, which you should present to the creator of that file. After each JSON file, the `Parser::fbb` member variable is the |