summaryrefslogtreecommitdiffstats
path: root/src/2geom/bezier-clipping.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/2geom/bezier-clipping.cpp')
-rw-r--r--src/2geom/bezier-clipping.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/2geom/bezier-clipping.cpp b/src/2geom/bezier-clipping.cpp
index be8dd5a5f..03a6dfecd 100644
--- a/src/2geom/bezier-clipping.cpp
+++ b/src/2geom/bezier-clipping.cpp
@@ -788,7 +788,7 @@ void iterate<intersection_point_tag> (std::vector<Interval>& domsA,
#endif
dom = clip<intersection_point_tag>(*C1, *C2, precision);
- if (dom.isEmpty())
+ if (dom.empty())
{
#if VERBOSE
std::cerr << "dom: empty" << std::endl;
@@ -937,7 +937,7 @@ void iterate<collinear_normal_tag> (std::vector<Interval>& domsA,
#endif
dom = clip<collinear_normal_tag>(*C1, *C2, precision);
- if (dom.isEmpty()) {
+ if (dom.empty()) {
#if VERBOSE
std::cerr << "dom: empty" << std::endl;
#endif