summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/GenUtil.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-07-09 19:29:53 +0000
committerMarc Laukien <marc@zeroc.com>2001-07-09 19:29:53 +0000
commit6dead81441fb25c7de68361327489632ef3523c4 (patch)
tree97a0c2e8764297cfa1031895c6e47cb1f8f35d53 /cpp/src/slice2cpp/GenUtil.cpp
parentwin fixes (diff)
downloadice-6dead81441fb25c7de68361327489632ef3523c4.tar.bz2
ice-6dead81441fb25c7de68361327489632ef3523c4.tar.xz
ice-6dead81441fb25c7de68361327489632ef3523c4.zip
interfaces (not finished yet)
Diffstat (limited to 'cpp/src/slice2cpp/GenUtil.cpp')
-rw-r--r--cpp/src/slice2cpp/GenUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cpp/GenUtil.cpp b/cpp/src/slice2cpp/GenUtil.cpp
index e5c3f2cefe5..4fb644042aa 100644
--- a/cpp/src/slice2cpp/GenUtil.cpp
+++ b/cpp/src/slice2cpp/GenUtil.cpp
@@ -177,7 +177,7 @@ Slice::writeMarshalUnmarshalCode(Output& out, const Type_ptr& type,
<< "::__implements[0]);";
out << nl << "if(!__obj)";
ClassDef_ptr def = cl -> definition();
- if(def && !def -> abstract())
+ if(def && !def -> isAbstract())
{
out << sb;
out << nl << "__obj = new " << cl -> scoped() << ";";