OpenSystemsDevelopment
/
qpdf
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
e9eac2a2451878b8daae585b4d6f7a85ce195bdd
Authored by
Jay Berkenbilt
2020-04-03 11:10:45 -0400
1 parent
bfda9415
Remove extraneous set of braces
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
3 deletions
include/qpdf/PointerHolder.hh
include/qpdf/PointerHolder.hh
View file @
e9eac2a
...
...
@@ -156,9 +156,7 @@ class PointerHolder
156
156
void init(Data* data)
157
157
{
158
158
this->data = data;
159
- {
160
- ++this->data->refcount;
161
- }
159
+ ++this->data->refcount;
162
160
}
163
161
void copy(PointerHolder const& rhs)
164
162
{
...
...