aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2020-04-03 17:10:45 +0200
committerJay Berkenbilt <ejb@ql.org>2020-04-03 18:16:24 +0200
commite9eac2a2451878b8daae585b4d6f7a85ce195bdd (patch)
treec6465fb7ea6672e216a79cbb74a1593bfe95209d /include
parentbfda94151950c9dfd930e1d780d6f16b2dfd4501 (diff)
downloadqpdf-e9eac2a2451878b8daae585b4d6f7a85ce195bdd.tar.zst
Remove extraneous set of braces
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/PointerHolder.hh4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/qpdf/PointerHolder.hh b/include/qpdf/PointerHolder.hh
index 8eaff2f6..03f0b682 100644
--- a/include/qpdf/PointerHolder.hh
+++ b/include/qpdf/PointerHolder.hh
@@ -156,9 +156,7 @@ class PointerHolder
void init(Data* data)
{
this->data = data;
- {
- ++this->data->refcount;
- }
+ ++this->data->refcount;
}
void copy(PointerHolder const& rhs)
{