Commit e9eac2a2451878b8daae585b4d6f7a85ce195bdd

Authored by Jay Berkenbilt
1 parent bfda9415

Remove extraneous set of braces

Showing 1 changed file with 1 additions and 3 deletions
include/qpdf/PointerHolder.hh
... ... @@ -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 {
... ...