summaryrefslogtreecommitdiffstats
path: root/src/2geom/concepts.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/2geom/concepts.h')
-rw-r--r--src/2geom/concepts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/concepts.h b/src/2geom/concepts.h
index bd020ab66..92ec66c7f 100644
--- a/src/2geom/concepts.h
+++ b/src/2geom/concepts.h
@@ -104,7 +104,7 @@ struct NearConcept {
double tol;
bool res;
void constraints() {
- res = near(a, b, tol);
+ res = are_near(a, b, tol);
}
};