summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/slice2java/Gen.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/cpp/src/slice2java/Gen.cpp b/cpp/src/slice2java/Gen.cpp
index f2ed551fd4a..7914181c8e0 100644
--- a/cpp/src/slice2java/Gen.cpp
+++ b/cpp/src/slice2java/Gen.cpp
@@ -475,8 +475,9 @@ Slice::JavaVisitor::writeThrowsClause(const string& scope,
ExceptionList::size_type localCount = 0;
//
- // MSVC gets confused if ::IceUtil::memFun(&::Slice::Exception::isLocal)); is used
- // hence the exceptionIsLocal function.
+ // MSVC gets confused if
+ // ::IceUtil::memFun(&::Slice::Exception::isLocal)); is used hence
+ // the exceptionIsLocal function.
//
localCount = count_if(throws.begin(), throws.end(), exceptionIsLocal);
@@ -1176,7 +1177,8 @@ Slice::JavaVisitor::writeDispatch(Output& out, const ClassDefPtr& p)
throws.unique();
//
- // MSVC gets confused if ::IceUtil::memFun(&::Slice::Exception::isLocal)); is used
+ // MSVC gets confused if
+ // ::IceUtil::memFun(&::Slice::Exception::isLocal)); is used
// hence the exceptionIsLocal function.
//
remove_if(throws.begin(), throws.end(), exceptionIsLocal);
@@ -3076,7 +3078,8 @@ Slice::Gen::DelegateMVisitor::visitClassDefStart(const ClassDefPtr& p)
throws.unique();
//
- // MSVC gets confused if ::IceUtil::memFun(&::Slice::Exception::isLocal)); is used
+ // MSVC gets confused if
+ // ::IceUtil::memFun(&::Slice::Exception::isLocal)); is used
// hence the exceptionIsLocal function.
//
remove_if(throws.begin(), throws.end(), exceptionIsLocal);