summaryrefslogtreecommitdiffstats
path: root/src/removeoverlap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/removeoverlap.cpp')
-rw-r--r--src/removeoverlap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/removeoverlap.cpp b/src/removeoverlap.cpp
index 06e7b81e6..bf9c362e2 100644
--- a/src/removeoverlap.cpp
+++ b/src/removeoverlap.cpp
@@ -32,7 +32,7 @@ struct Record {
Geom::Point midpoint;
Rectangle * vspc_rect;
- Record() : item(0), vspc_rect(0) {}
+ Record() : item(nullptr), vspc_rect(nullptr) {}
Record(SPItem * i, Geom::Point m, Rectangle * r)
: item(i), midpoint(m), vspc_rect(r) {}
};