diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-12-05 23:32:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-12-05 23:32:49 +0100 |
commit | b7f1b4c02c61dbe846ca190b246061b11c59e1df (patch) | |
tree | b2a3cd6c7f11469cf16ff6850cfd484eb37a2334 /bridges | |
parent | a91782b92d9509619da2598904c644a19aead70b (diff) |
loplugin:unnecessaryparen
Change-Id: Ic717f68f0d107138dd18116b70f3a49588c5778f
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx b/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx index 2df4356c81b5..c31cf180a704 100644 --- a/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx +++ b/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx @@ -119,7 +119,7 @@ static OUString toUNOname( char const * p ) while ('E' != *p) { // read chars count - long n = (*p++ - '0'); + long n = *p++ - '0'; while ('0' <= *p && '9' >= *p) { n *= 10; |