diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-10 20:27:53 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-10 20:27:53 +0000 |
commit | ca4177b0f7e3090a783601f284baa8413c457cca (patch) | |
tree | 6cb3435fa8da91f5cf46f14c7eed28387eb0a84a /cpp/src/Slice/GrammarUtil.h | |
parent | renamed file (diff) | |
download | ice-ca4177b0f7e3090a783601f284baa8413c457cca.tar.bz2 ice-ca4177b0f7e3090a783601f284baa8413c457cca.tar.xz ice-ca4177b0f7e3090a783601f284baa8413c457cca.zip |
more error checks
Diffstat (limited to 'cpp/src/Slice/GrammarUtil.h')
-rw-r--r-- | cpp/src/Slice/GrammarUtil.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/Slice/GrammarUtil.h b/cpp/src/Slice/GrammarUtil.h index 4641c6d49fc..9053ff74105 100644 --- a/cpp/src/Slice/GrammarUtil.h +++ b/cpp/src/Slice/GrammarUtil.h @@ -20,7 +20,7 @@ class StringTok; class TypeStringListTok; class StringListTok; class BoolTok; -class TypeListTok; +class ExceptionListTok; class ClassListTok; class EnumeratorListTok; @@ -28,7 +28,7 @@ typedef ::IceUtil::Handle<StringTok> StringTokPtr; typedef ::IceUtil::Handle<TypeStringListTok> TypeStringListTokPtr; typedef ::IceUtil::Handle<StringListTok> StringListTokPtr; typedef ::IceUtil::Handle<BoolTok> BoolTokPtr; -typedef ::IceUtil::Handle<TypeListTok> TypeListTokPtr; +typedef ::IceUtil::Handle<ExceptionListTok> ExceptionListTokPtr; typedef ::IceUtil::Handle<ClassListTok> ClassListTokPtr; typedef ::IceUtil::Handle<EnumeratorListTok> EnumeratorListTokPtr; @@ -86,15 +86,15 @@ public: }; // ---------------------------------------------------------------------- -// TypeListTok +// ExceptionListTok // ---------------------------------------------------------------------- -class SLICE_API TypeListTok : public GrammerBase +class SLICE_API ExceptionListTok : public GrammerBase { public: - TypeListTok() { } - TypeList v; + ExceptionListTok() { } + ExceptionList v; }; // ---------------------------------------------------------------------- |