diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-07-17 17:16:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-07-17 17:16:51 +0200 |
commit | 9f08211d2461c3d46a5f448f6c399ac6b82e910d (patch) | |
tree | d60da5bbc33a11634a719970c865461998d846fd /basic/source | |
parent | 7a23668e4f4e235c7a4e1c99e38506bd9c874be8 (diff) |
loplugin:unnecessaryparen: basic (clang-cl)
Change-Id: Id6e339a4d1bc775826ff434bc77beb05fe353324
Diffstat (limited to 'basic/source')
-rw-r--r-- | basic/source/runtime/methods.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx index 996542c4b854..478a59a0e1f2 100644 --- a/basic/source/runtime/methods.cxx +++ b/basic/source/runtime/methods.cxx @@ -2968,7 +2968,7 @@ void SbRtl_GetAttr(StarBASIC * pBasic, SbxArray & rPar, bool bWrite) { nRealFlags = 0; } - nFlags = (sal_Int16) (nRealFlags); + nFlags = (sal_Int16) nRealFlags; } else { |