diff options
author | Bernard Normier <bernard@zeroc.com> | 2017-05-02 14:19:40 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2017-05-02 14:19:40 -0400 |
commit | 08852dc9a15e0f68f9359963dae67d899bb7d775 (patch) | |
tree | b7b976a348738b3b699c46217bf1bf2e76aac140 /cpp/src | |
parent | Fixed trailing whitespace generated by slice2php (diff) | |
download | ice-08852dc9a15e0f68f9359963dae67d899bb7d775.tar.bz2 ice-08852dc9a15e0f68f9359963dae67d899bb7d775.tar.xz ice-08852dc9a15e0f68f9359963dae67d899bb7d775.zip |
Removed trailing whitespace generated by slice2objc
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/slice2objc/Gen.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/slice2objc/Gen.cpp b/cpp/src/slice2objc/Gen.cpp index 10012bcb1ba..5e3da9416c7 100644 --- a/cpp/src/slice2objc/Gen.cpp +++ b/cpp/src/slice2objc/Gen.cpp @@ -220,7 +220,7 @@ Slice::ObjCVisitor::writeDispatchAndMarshalling(const ClassDefPtr& p) assert(scopedIter != ids.end()); StringList::difference_type scopedPos = IceUtilInternal::distance(firstIter, scopedIter); - _M << sp << nl << "static NSString * iceS_" << name << "_ids[] = "; + _M << sp << nl << "static NSString * iceS_" << name << "_ids[] ="; _M << sb; { StringList::const_iterator q = ids.begin(); @@ -2899,7 +2899,7 @@ Slice::Gen::DelegateMVisitor::visitClassDefStart(const ClassDefPtr& p) _M << sp << nl << "-(id<ICEAsyncResult>) begin_" << (*r)->name() << marshalParams; _M << (marshalParams.empty() ? "" : " context") << ":(ICEContext*)context"; - _M << " response:(" << responseCBSig << ")response exception:(void(^)(ICEException*))exception "; + _M << " response:(" << responseCBSig << ")response exception:(void(^)(ICEException*))exception"; _M << sb; _M << nl << "return [self begin_" << (*r)->name() << marshalArgs; _M << (marshalArgs.empty() ? "" : " context") << ":context response:response exception:exception sent:nil];"; @@ -2907,7 +2907,7 @@ Slice::Gen::DelegateMVisitor::visitClassDefStart(const ClassDefPtr& p) _M << sp << nl << "-(id<ICEAsyncResult>) begin_" << (*r)->name() << marshalParams; _M << (marshalParams.empty() ? "" : " context") << ":(ICEContext*)context"; - _M << " response:(" << responseCBSig << ")response exception:(void(^)(ICEException*))exception "; + _M << " response:(" << responseCBSig << ")response exception:(void(^)(ICEException*))exception"; _M << " sent:(void(^)(BOOL))sent"; _M << sb; if(!inParams.empty()) |