diff options
author | Michi Henning <michi@zeroc.com> | 2004-09-08 05:47:21 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-09-08 05:47:21 +0000 |
commit | b75e62260203fd10b02607a750064d6e93f2c1cc (patch) | |
tree | 5a032cbbbde25fc33159bbe58adee5e216ba4241 /cpp/include | |
parent | Fixed compilation failure (diff) | |
download | ice-b75e62260203fd10b02607a750064d6e93f2c1cc.tar.bz2 ice-b75e62260203fd10b02607a750064d6e93f2c1cc.tar.xz ice-b75e62260203fd10b02607a750064d6e93f2c1cc.zip |
Eliminated duplicate warning for class and interface definitions at global
scope.
Diffstat (limited to 'cpp/include')
-rw-r--r-- | cpp/include/Slice/Parser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/include/Slice/Parser.h b/cpp/include/Slice/Parser.h index 77de74b53e2..9d0d1f6d761 100644 --- a/cpp/include/Slice/Parser.h +++ b/cpp/include/Slice/Parser.h @@ -423,7 +423,8 @@ public: bool checkIntroduced(const std::string&, ContainedPtr = 0); // TODO: remove final (defaulted) bool parameter once deprecated features are outlawed. bool nameIsLegal(const std::string&, const char *, bool = false); - bool checkForGlobalDef(const std::string&, const char *); + // TODO: remove final (defaulted) bool parameter once deprecated features are outlawed. + bool checkForGlobalDef(const std::string&, const char *, bool = false); protected: |