summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-07-05 22:49:59 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-07-05 22:49:59 +0200
commitd4ffca1e071536f5c3f66ddcc8156540055eace4 (patch)
tree97e41e4d054feb5daf948d74a631a3a2aa4005ac /sdext
parent53db174c804a4a378db3a12582d45488020097a3 (diff)
loplugin:unnecessaryparen
Change-Id: Ifeacfc198c71ae1224ef38a4c8b95b31364f8227
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/pdfimport/pdfparse/pdfparse.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdext/source/pdfimport/pdfparse/pdfparse.cxx b/sdext/source/pdfimport/pdfparse/pdfparse.cxx
index 8337930e5c20..9fa0545bbb10 100644
--- a/sdext/source/pdfimport/pdfparse/pdfparse.cxx
+++ b/sdext/source/pdfimport/pdfparse/pdfparse.cxx
@@ -243,7 +243,7 @@ public:
>> uint_p[boost::bind(&PDFGrammar::push_back_action_uint, pSelf, _1)]
>> ch_p('.')
>> uint_p[boost::bind(&PDFGrammar::push_back_action_uint, pSelf, _1)]
- >> *((~ch_p('\r') & ~ch_p('\n')))
+ >> *(~ch_p('\r') & ~ch_p('\n'))
>> eol_p
])[boost::bind(&PDFGrammar::haveFile,pSelf, _1, _2)]
>> *( comment | object | ( xref >> trailer ) );