summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/Gen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r--cpp/src/slice2cpp/Gen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp
index f10b279cefd..654838c5217 100644
--- a/cpp/src/slice2cpp/Gen.cpp
+++ b/cpp/src/slice2cpp/Gen.cpp
@@ -880,7 +880,7 @@ Slice::Gen::TypesVisitor::visitStructStart(const StructPtr& p)
if(findMetaData(p->getMetaData(), false) == "class")
{
- H << sp << nl << _dllExport << "class " << name << " : public IceUtil::Shared";
+ H << sp << nl << "class " << _dllExport << name << " : public IceUtil::Shared";
H << sb;
H.dec();
H << nl << "public:";