summaryrefslogtreecommitdiff
path: root/canvas
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-10-26 10:27:48 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-10-26 10:27:48 +0200
commit084f454e8caa2d9e43f7bdea098538bfb87423d8 (patch)
tree46c900bd78b03d20886dadad92adb17cf3045d4b /canvas
parent7e87403953dfd54bf1e904ccc7436c6f327a9069 (diff)
More loplugin:unnecessaryparen
81892b2037453108b9bde1512a500cf3b2ce438a "loplugin:unnecessaryparen when compiling as C++17, so the ParenExpr is no longer hidden behind ExprWithCleanups/CXXConstructExpr/MaterializedTemporaryExpr wrappers" gave me the idea to generally look though IgnoreImplicit instead of IngoreImpCasts in loplugin:unnecessaryparen. However, that would still not look through implicit CXXConstructExpr, so would still not have found the occurrences in 81892b2037453108b9bde1512a500cf3b2ce438a when compiling in pre-C++17 mode. Therefore, let ignoreAllImplicit also look through CXXConstructExpr. (I am not entirely sure in which situations non-implicit CXXConstructExpr---that should thus not be ignored---would occur, but assume they would be underneath something like a CXXFunctionalCastExpr, which is not ignored.) Change-Id: I947d08742e1809150ecc34a7abe84cca5e0ce843
Diffstat (limited to 'canvas')
-rw-r--r--canvas/source/factory/cf_service.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/canvas/source/factory/cf_service.cxx b/canvas/source/factory/cf_service.cxx
index 5a846aef7bb3..ed49bcfa1474 100644
--- a/canvas/source/factory/cf_service.cxx
+++ b/canvas/source/factory/cf_service.cxx
@@ -166,15 +166,15 @@ CanvasFactory::CanvasFactory( Reference<XComponentContext> const & xContext ) :
if( xEntryNameAccess.is() )
{
Sequence<OUString> implementationList;
- if( (xEntryNameAccess->getByName("PreferredImplementations") >>= implementationList) )
+ if( xEntryNameAccess->getByName("PreferredImplementations") >>= implementationList )
{
m_aAvailableImplementations.emplace_back(*pCurr,implementationList );
}
- if( (xEntryNameAccess->getByName("AcceleratedImplementations") >>= implementationList) )
+ if( xEntryNameAccess->getByName("AcceleratedImplementations") >>= implementationList )
{
m_aAcceleratedImplementations.emplace_back(*pCurr,implementationList );
}
- if( (xEntryNameAccess->getByName("AntialiasingImplementations") >>= implementationList) )
+ if( xEntryNameAccess->getByName("AntialiasingImplementations") >>= implementationList )
{
m_aAAImplementations.emplace_back(*pCurr,implementationList );
}