diff options
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index ef56592422f..50bef5c31e1 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -434,15 +434,6 @@ Slice::Gen::TypesVisitor::visitEnum(const EnumPtr& p) C << eb; } -void -Slice::Gen::TypesVisitor::visitNative(const NativePtr& p) -{ - string name = p->name(); - - H << sp; - H << nl << "typedef ::IceNative::" << name << ' ' << name << ';'; -} - Slice::Gen::ProxyDeclVisitor::ProxyDeclVisitor(Output& h, Output& c, const string& dllExport) : H(h), C(c), _dllExport(dllExport) { |