diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-09-02 15:48:26 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-09-02 15:48:26 +0000 |
commit | 909a9ff9bef4fbaacaa10baa9b19d3cc7da11659 (patch) | |
tree | 8b255852607e8536e06ac479e5169172b36d7eec /cpp/src/FreezeScript/TransformAnalyzer.cpp | |
parent | adding Python translator (diff) | |
download | ice-909a9ff9bef4fbaacaa10baa9b19d3cc7da11659.tar.bz2 ice-909a9ff9bef4fbaacaa10baa9b19d3cc7da11659.tar.xz ice-909a9ff9bef4fbaacaa10baa9b19d3cc7da11659.zip |
adding bool param to parser visit() function
Diffstat (limited to 'cpp/src/FreezeScript/TransformAnalyzer.cpp')
-rw-r--r-- | cpp/src/FreezeScript/TransformAnalyzer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/FreezeScript/TransformAnalyzer.cpp b/cpp/src/FreezeScript/TransformAnalyzer.cpp index 8ea4bc5b0c4..3a6de591b58 100644 --- a/cpp/src/FreezeScript/TransformAnalyzer.cpp +++ b/cpp/src/FreezeScript/TransformAnalyzer.cpp @@ -1128,10 +1128,10 @@ FreezeScript::TransformAnalyzer::analyze(const TypePtr& oldKey, const TypePtr& n AnalyzeTransformVisitor transformVisitor(out, _new, oldKey, newKey, oldValue, newValue, _ignoreTypeChanges, missingTypes, errors); - _old->visit(&transformVisitor); + _old->visit(&transformVisitor, false); AnalyzeInitVisitor initVisitor(out, _old); - _new->visit(&initVisitor); + _new->visit(&initVisitor, false); out << ee; out << '\n'; |