summaryrefslogtreecommitdiff
path: root/cpp/src/Transform/TransformDB.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2003-11-19 17:40:01 +0000
committerMark Spruiell <mes@zeroc.com>2003-11-19 17:40:01 +0000
commit981a46d3f6b376bc2e2505437456c85607f252f4 (patch)
tree766fdf45489040bd5221c6ac0b7cb64d8be9b442 /cpp/src/Transform/TransformDB.cpp
parentfix for transformdb include paths (diff)
downloadice-981a46d3f6b376bc2e2505437456c85607f252f4.tar.bz2
ice-981a46d3f6b376bc2e2505437456c85607f252f4.tar.xz
ice-981a46d3f6b376bc2e2505437456c85607f252f4.zip
bug fix - not visiting #included definitions
Diffstat (limited to 'cpp/src/Transform/TransformDB.cpp')
-rw-r--r--cpp/src/Transform/TransformDB.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Transform/TransformDB.cpp b/cpp/src/Transform/TransformDB.cpp
index 9744f04e152..cc2d9467b03 100644
--- a/cpp/src/Transform/TransformDB.cpp
+++ b/cpp/src/Transform/TransformDB.cpp
@@ -355,14 +355,14 @@ run(int argc, char** argv, const Ice::CommunicatorPtr& communicator)
dbNameNew = argv[3];
}
- Slice::UnitPtr oldUnit = Slice::Unit::createUnit(true, false, ice, caseSensitive);
+ Slice::UnitPtr oldUnit = Slice::Unit::createUnit(true, true, ice, caseSensitive);
Transform::Destroyer<Slice::UnitPtr> oldD(oldUnit);
if(!parseSlice(argv[0], oldUnit, oldSlice, oldCppArgs, debug))
{
return EXIT_FAILURE;
}
- Slice::UnitPtr newUnit = Slice::Unit::createUnit(true, false, ice, caseSensitive);
+ Slice::UnitPtr newUnit = Slice::Unit::createUnit(true, true, ice, caseSensitive);
Transform::Destroyer<Slice::UnitPtr> newD(newUnit);
if(!parseSlice(argv[0], newUnit, newSlice, newCppArgs, debug))
{