summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/Gen.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-01-27 16:06:11 +0000
committerMarc Laukien <marc@zeroc.com>2002-01-27 16:06:11 +0000
commit9a55f4af072bc7d43ab4fc7e476d58a8eab609f8 (patch)
tree5ab5f888e623df036b7f0ba39277352cdffe315a /cpp/src/slice2cpp/Gen.cpp
parentadded missing files (diff)
downloadice-9a55f4af072bc7d43ab4fc7e476d58a8eab609f8.tar.bz2
ice-9a55f4af072bc7d43ab4fc7e476d58a8eab609f8.tar.xz
ice-9a55f4af072bc7d43ab4fc7e476d58a8eab609f8.zip
fix
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r--cpp/src/slice2cpp/Gen.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp
index fe1804765c8..23f6bb1afa6 100644
--- a/cpp/src/slice2cpp/Gen.cpp
+++ b/cpp/src/slice2cpp/Gen.cpp
@@ -610,9 +610,9 @@ Slice::Gen::TypesVisitor::visitSequence(const SequencePtr& p)
H.zeroIndent();
H << nl << "public:";
H.restoreIndent();
- H << sp << nl << _dllExport << "static void ice_marshal(const ::std::string&, const ::Ice::StreamPtr&, const "
+ H << sp << nl << "static void ice_marshal(const ::std::string&, const ::Ice::StreamPtr&, const "
<< name << "&);";
- H << nl << _dllExport << "static void ice_unmarshal(const ::std::string&, const ::Ice::StreamPtr&, "
+ H << nl << "static void ice_unmarshal(const ::std::string&, const ::Ice::StreamPtr&, "
<< name << "&);";
H << eb << ";";
@@ -746,9 +746,9 @@ Slice::Gen::TypesVisitor::visitDictionary(const DictionaryPtr& p)
H.zeroIndent();
H << nl << "public:";
H.restoreIndent();
- H << sp << nl << _dllExport << "static void ice_marshal(const ::std::string&, const ::Ice::StreamPtr&, const "
+ H << sp << nl << "static void ice_marshal(const ::std::string&, const ::Ice::StreamPtr&, const "
<< name << "&);";
- H << nl << _dllExport << "static void ice_unmarshal(const ::std::string&, const ::Ice::StreamPtr&, "
+ H << nl << "static void ice_unmarshal(const ::std::string&, const ::Ice::StreamPtr&, "
<< name << "&);";
H << eb << ";";