summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/CPlusPlusUtil.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-09 03:26:54 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-09 03:26:54 +0000
commit5f01a4a9444e8fa9269a86ef403b2ca183fa9de5 (patch)
tree5f1de030386a81aa6a5d6d9e7b1d24322962f195 /cpp/src/Slice/CPlusPlusUtil.cpp
parentfixes (diff)
downloadice-5f01a4a9444e8fa9269a86ef403b2ca183fa9de5.tar.bz2
ice-5f01a4a9444e8fa9269a86ef403b2ca183fa9de5.tar.xz
ice-5f01a4a9444e8fa9269a86ef403b2ca183fa9de5.zip
removed pickler, native
Diffstat (limited to 'cpp/src/Slice/CPlusPlusUtil.cpp')
-rw-r--r--cpp/src/Slice/CPlusPlusUtil.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/cpp/src/Slice/CPlusPlusUtil.cpp b/cpp/src/Slice/CPlusPlusUtil.cpp
index 1f7ec9f9df8..ca036e2cc60 100644
--- a/cpp/src/Slice/CPlusPlusUtil.cpp
+++ b/cpp/src/Slice/CPlusPlusUtil.cpp
@@ -200,12 +200,6 @@ Slice::inputTypeToString(const TypePtr& type)
return en->scoped();
}
- NativePtr native = NativePtr::dynamicCast(type);
- if (native)
- {
- return native->scoped();
- }
-
ContainedPtr contained = ContainedPtr::dynamicCast(type);
if (contained)
{
@@ -252,12 +246,6 @@ Slice::outputTypeToString(const TypePtr& type)
return proxy->_class()->scoped() + "Prx&";
}
- NativePtr native = NativePtr::dynamicCast(type);
- if (native)
- {
- return native->scoped();
- }
-
ContainedPtr contained = ContainedPtr::dynamicCast(type);
if (contained)
{
@@ -310,12 +298,6 @@ Slice::exceptionTypeToString(const TypePtr& type)
return en->scoped();
}
- NativePtr native = NativePtr::dynamicCast(type);
- if (native)
- {
- return native->scoped();
- }
-
ContainedPtr contained = ContainedPtr::dynamicCast(type);
if (contained)
{
@@ -434,9 +416,6 @@ Slice::writeMarshalUnmarshalCode(Output& out, const TypePtr& type, const string&
return;
}
- NativePtr native = NativePtr::dynamicCast(type);
- assert(!native); // TODO
-
ConstructedPtr constructed = ConstructedPtr::dynamicCast(type);
if (!constructed)
{