summaryrefslogtreecommitdiff
path: root/cpp/src/FreezeScript/TransformAnalyzer.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2004-09-02 15:48:26 +0000
committerMark Spruiell <mes@zeroc.com>2004-09-02 15:48:26 +0000
commit909a9ff9bef4fbaacaa10baa9b19d3cc7da11659 (patch)
tree8b255852607e8536e06ac479e5169172b36d7eec /cpp/src/FreezeScript/TransformAnalyzer.cpp
parentadding Python translator (diff)
downloadice-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.cpp4
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';