diff options
author | Michi Henning <michi@zeroc.com> | 2005-06-20 12:48:38 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-06-20 12:48:38 +0000 |
commit | ec7622852746c5f8f73b26ecf4c42fb5baeffca1 (patch) | |
tree | 88704bf921222d742e6327073b69e06828d8bc97 /cpp/src/Slice/CPlusPlusUtil.cpp | |
parent | Another fix for bug 377 -- the string wrapper was incorrect as well. (diff) | |
download | ice-ec7622852746c5f8f73b26ecf4c42fb5baeffca1.tar.bz2 ice-ec7622852746c5f8f73b26ecf4c42fb5baeffca1.tar.xz ice-ec7622852746c5f8f73b26ecf4c42fb5baeffca1.zip |
Removed copy constructor and assignment operator for exceptions and
classes. Removed #undef scheme and add UndefSysMacros.h instead.
Diffstat (limited to 'cpp/src/Slice/CPlusPlusUtil.cpp')
-rw-r--r-- | cpp/src/Slice/CPlusPlusUtil.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cpp/src/Slice/CPlusPlusUtil.cpp b/cpp/src/Slice/CPlusPlusUtil.cpp index d1f1b0b52c5..adf24fd7267 100644 --- a/cpp/src/Slice/CPlusPlusUtil.cpp +++ b/cpp/src/Slice/CPlusPlusUtil.cpp @@ -903,15 +903,3 @@ Slice::writeStreamUnmarshalCode(Output& out, const list<pair<TypePtr, string> >& writeStreamMarshalUnmarshalCode(out, ret, "__ret", false, ""); } } - -void -Slice::writeUndefines(Output& out, const vector<string>& symbols) -{ - out.zeroIndent(); - out << sp; - for(vector<string>::const_iterator i = symbols.begin(); i != symbols.end(); ++i) - { - out << nl << "#undef " << *i; - } - out.restoreIndent(); -} |