2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-30 17:00:51 +00:00

Remove extraneous set of braces

This commit is contained in:
Jay Berkenbilt 2020-04-03 11:10:45 -04:00
parent bfda941519
commit e9eac2a245

View File

@ -156,9 +156,7 @@ class PointerHolder
void init(Data* data)
{
this->data = data;
{
++this->data->refcount;
}
++this->data->refcount;
}
void copy(PointerHolder const& rhs)
{