summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/Main.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2009-01-27 19:28:59 +0100
committerJose <jose@zeroc.com>2009-01-27 19:28:59 +0100
commit55f6e6863b8f17312e8ff58d05d6d035c822187b (patch)
tree787029a35e03a48456d1ed3cb8cc5965d0657319 /cpp/src/slice2cpp/Main.cpp
parentAdded missing libs (diff)
downloadice-55f6e6863b8f17312e8ff58d05d6d035c822187b.tar.bz2
ice-55f6e6863b8f17312e8ff58d05d6d035c822187b.tar.xz
ice-55f6e6863b8f17312e8ff58d05d6d035c822187b.zip
Squashed commit of the following:
commit 9aa67a8862e402cb52276282b26a40422fae4adb Author: Jose Gutierrez <jose@zeroc.com> Date: Tue Jan 27 19:25:22 2009 +0100 Fixed 3374 --header-ext not work as intended.
Diffstat (limited to 'cpp/src/slice2cpp/Main.cpp')
-rw-r--r--cpp/src/slice2cpp/Main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2cpp/Main.cpp b/cpp/src/slice2cpp/Main.cpp
index 7e2ff8b58b1..86eafe9e64f 100644
--- a/cpp/src/slice2cpp/Main.cpp
+++ b/cpp/src/slice2cpp/Main.cpp
@@ -169,7 +169,7 @@ main(int argc, char* argv[])
{
if(depend)
{
- Preprocessor icecpp(argv[0], *i, cppArgs);
+ Preprocessor icecpp(argv[0], *i, cppArgs, sourceExtension);
if(!icecpp.printMakefileDependencies(Preprocessor::CPlusPlus, includePaths))
{
return EXIT_FAILURE;
@@ -177,7 +177,7 @@ main(int argc, char* argv[])
}
else
{
- Preprocessor icecpp(argv[0], *i, cppArgs);
+ Preprocessor icecpp(argv[0], *i, cppArgs, sourceExtension);
FILE* cppHandle = icecpp.preprocess(false);
if(cppHandle == 0)