diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-05-12 10:22:23 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-05-12 10:22:23 -0230 |
commit | 49ade4b95b287fbc7e78afe0056e3589d5a7552a (patch) | |
tree | 03cd41e2258640a3b0a45ddb7ee74e3f9a0d3878 /cpp/include/Slice/Parser.h | |
parent | ICE-6503 fix setting of install prefix (diff) | |
download | ice-49ade4b95b287fbc7e78afe0056e3589d5a7552a.tar.bz2 ice-49ade4b95b287fbc7e78afe0056e3589d5a7552a.tar.xz ice-49ade4b95b287fbc7e78afe0056e3589d5a7552a.zip |
ICE-6491 duplicate error for invalid class/interface names
Diffstat (limited to 'cpp/include/Slice/Parser.h')
-rw-r--r-- | cpp/include/Slice/Parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/include/Slice/Parser.h b/cpp/include/Slice/Parser.h index 2ca3e84bfc4..f76a2383ac1 100644 --- a/cpp/include/Slice/Parser.h +++ b/cpp/include/Slice/Parser.h @@ -444,7 +444,7 @@ public: virtual void destroy(); ModulePtr createModule(const std::string&); ClassDefPtr createClassDef(const std::string&, int, bool, const ClassList&, bool); - ClassDeclPtr createClassDecl(const std::string&, bool, bool); + ClassDeclPtr createClassDecl(const std::string&, bool, bool, bool = true); ExceptionPtr createException(const std::string&, const ExceptionPtr&, bool, NodeType = Real); StructPtr createStruct(const std::string&, bool, NodeType = Real); SequencePtr createSequence(const std::string&, const TypePtr&, const StringList&, bool, NodeType = Real); |