diff options
Diffstat (limited to 'cpp/src/Slice/Parser.h')
-rw-r--r-- | cpp/src/Slice/Parser.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/Slice/Parser.h b/cpp/src/Slice/Parser.h index 6dbd1826c0e..fe4bc2df77d 100644 --- a/cpp/src/Slice/Parser.h +++ b/cpp/src/Slice/Parser.h @@ -22,6 +22,7 @@ extern int yynerrs; int yyparse(); int yylex(); void yyerror(const char* s); +void yyerror(const std::string& s); namespace Slice { @@ -297,6 +298,9 @@ protected: Container(const Unit_ptr&); + bool checkInterfaceAndLocal(const std::string&, bool, + bool, bool, bool, bool); + int includeLevel_; ContainedList contents_; }; |