diff options
author | Mark Spruiell <mes@zeroc.com> | 2009-08-03 12:18:11 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2009-08-03 12:18:11 -0700 |
commit | b6d9385881b1d24e3b75d2367c3cb17201176fba (patch) | |
tree | 364aa477c2acb662790a7fd53bb6bac66a4637ec /cpp/src/Slice/Parser.cpp | |
parent | 3986 - Calling get_connectionId on a fixed proxy should raise FixedProxyExcep... (diff) | |
download | ice-b6d9385881b1d24e3b75d2367c3cb17201176fba.tar.bz2 ice-b6d9385881b1d24e3b75d2367c3cb17201176fba.tar.xz ice-b6d9385881b1d24e3b75d2367c3cb17201176fba.zip |
initialize integer members of Slice::Unit
Diffstat (limited to 'cpp/src/Slice/Parser.cpp')
-rw-r--r-- | cpp/src/Slice/Parser.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/Slice/Parser.cpp b/cpp/src/Slice/Parser.cpp index 318a6729df2..474503132b5 100644 --- a/cpp/src/Slice/Parser.cpp +++ b/cpp/src/Slice/Parser.cpp @@ -5521,7 +5521,9 @@ Slice::Unit::Unit(bool ignRedefs, bool all, bool allowIcePrefix, const StringLis _all(all), _allowIcePrefix(allowIcePrefix), _defaultGlobalMetaData(defaultGlobalMetadata), - _errors(0) + _errors(0), + _currentLine(0), + _currentIncludeLevel(0) { _unit = this; |