diff options
Diffstat (limited to 'src/idl_gen_text.cpp')
-rw-r--r-- | src/idl_gen_text.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/idl_gen_text.cpp b/src/idl_gen_text.cpp index 681e6e1a..c1d69f23 100644 --- a/src/idl_gen_text.cpp +++ b/src/idl_gen_text.cpp @@ -454,9 +454,8 @@ class TextCodeGenerator : public CodeGenerator { // Generate code from the provided `buffer` of given `length`. The buffer is a // serialized reflection.fbs. - Status GenerateCode(const uint8_t *buffer, int64_t length) override { - (void)buffer; - (void)length; + Status GenerateCode(const uint8_t *, int64_t, + const CodeGenOptions &) override { return Status::NOT_IMPLEMENTED; } |