diff options
author | Marc Laukien <marc@zeroc.com> | 2001-07-09 19:44:44 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-07-09 19:44:44 +0000 |
commit | bd8e6148ed73bc667bd72d50f97a639e2a574b77 (patch) | |
tree | 2338c675420f2ceaccd7211ca98345b135e5318f /cpp/src/Slice/Parser.cpp | |
parent | interfaces (not finished yet) (diff) | |
download | ice-bd8e6148ed73bc667bd72d50f97a639e2a574b77.tar.bz2 ice-bd8e6148ed73bc667bd72d50f97a639e2a574b77.tar.xz ice-bd8e6148ed73bc667bd72d50f97a639e2a574b77.zip |
fixes
Diffstat (limited to 'cpp/src/Slice/Parser.cpp')
-rw-r--r-- | cpp/src/Slice/Parser.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Slice/Parser.cpp b/cpp/src/Slice/Parser.cpp index 6d5744b9e36..4cf63c69810 100644 --- a/cpp/src/Slice/Parser.cpp +++ b/cpp/src/Slice/Parser.cpp @@ -679,13 +679,13 @@ Slice::ClassDecl::visit(ParserVisitor* visitor) Slice::ClassDecl::ClassDecl(const Container_ptr& container, const string& name, bool local, - bool interface) + bool intf) : Constructed(container, name), Type(container -> unit()), Contained(container, name), SyntaxTreeBase(container -> unit()), local_(local), - interface_(interface) + interface_(intf) { } @@ -834,14 +834,14 @@ Slice::ClassDef::ClassDef(const Container_ptr& container, const ClassDef_ptr& base, const ClassList& implements, bool local, - bool interface) + bool intf) : Contained(container, name), Container(container -> unit()), SyntaxTreeBase(container -> unit()), base_(base), implements_(implements), local_(local), - interface_(interface) + interface_(intf) { } |