summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cppe/Gen.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-06-27 12:41:43 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-06-27 12:41:43 +0000
commit45df96fd79266467f69dac645175c81230728e68 (patch)
tree39aa670d8ca03bd351f31879c1522b7adf3c23ad /cpp/src/slice2cppe/Gen.cpp
parentFixed build (diff)
downloadice-45df96fd79266467f69dac645175c81230728e68.tar.bz2
ice-45df96fd79266467f69dac645175c81230728e68.tar.xz
ice-45df96fd79266467f69dac645175c81230728e68.zip
Fixed Ice-E headers
Diffstat (limited to 'cpp/src/slice2cppe/Gen.cpp')
-rw-r--r--cpp/src/slice2cppe/Gen.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/slice2cppe/Gen.cpp b/cpp/src/slice2cppe/Gen.cpp
index acff9cd2713..51933ca3de6 100644
--- a/cpp/src/slice2cppe/Gen.cpp
+++ b/cpp/src/slice2cppe/Gen.cpp
@@ -140,8 +140,8 @@ Slice::Gen::Gen(const string& name, const string& base, const string& headerExte
return;
}
- printHeader(H);
- printHeader(C);
+ printHeader(H, true);
+ printHeader(C, true);
H << "\n// Generated from file `" << changeInclude(_base, _includePaths) << ".ice'\n";
C << "\n// Generated from file `" << changeInclude(_base, _includePaths) << ".ice'\n";
@@ -243,8 +243,8 @@ Slice::Gen::generate(const UnitPtr& p)
H << "\n#include <Ice/UndefSysMacros.h>";
- printVersionCheck(H);
- printVersionCheck(C);
+ printVersionCheck(H, true);
+ printVersionCheck(C, true);
printDllExportStuff(H, _dllExport);
if(_dllExport.size())