summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/Gen.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2003-11-21 00:16:13 +0000
committerMark Spruiell <mes@zeroc.com>2003-11-21 00:16:13 +0000
commit3a90a8c37c86ebb02402c1c2070ffb260ada8636 (patch)
tree0051e447328d7c44ebbf1ef135a10e9fea205b89 /cpp/src/slice2cpp/Gen.cpp
parentanother output fix for proxy (diff)
downloadice-3a90a8c37c86ebb02402c1c2070ffb260ada8636.tar.bz2
ice-3a90a8c37c86ebb02402c1c2070ffb260ada8636.tar.xz
ice-3a90a8c37c86ebb02402c1c2070ffb260ada8636.zip
add missing newline
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r--cpp/src/slice2cpp/Gen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp
index 697e9846794..7566805d9b6 100644
--- a/cpp/src/slice2cpp/Gen.cpp
+++ b/cpp/src/slice2cpp/Gen.cpp
@@ -1198,7 +1198,7 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p)
C << sb;
if(p->returnsData())
{
- C << "__checkTwowayOnly(\"" << p->name() << "\");";
+ C << nl << "__checkTwowayOnly(\"" << p->name() << "\");";
}
C << nl << "::IceInternal::Handle< ::IceDelegate::Ice::Object> __delBase = __getDelegate();";
C << nl << "::IceDelegate" << thisPointer << " __del = dynamic_cast< ::IceDelegate"
@@ -1259,7 +1259,7 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p)
C << sb;
if(p->returnsData())
{
- C << "__checkTwowayOnly(\"" << p->name() << "\");";
+ C << nl << "__checkTwowayOnly(\"" << p->name() << "\");";
}
C << nl << "::IceInternal::Handle< ::IceDelegate::Ice::Object> __delBase = __getDelegate();";
C << nl << "::IceDelegate" << thisPointer << " __del = dynamic_cast< ::IceDelegate"