From ada860c9cb59cad89120c9ddc6cdca32cd65a4a3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Simonis?= <simonisfrederic@gmail.com>
Date: Tue, 3 Aug 2021 17:26:06 +0200
Subject: [PATCH] Remove broken constructor

---
 scribus/third_party/lib2geom/path.h | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/scribus/third_party/lib2geom/path.h b/scribus/third_party/lib2geom/path.h
index fab674ed3..b8d4a8847 100644
--- a/scribus/third_party/lib2geom/path.h
+++ b/scribus/third_party/lib2geom/path.h
@@ -250,15 +250,6 @@ public:
   double valueAt(double t, Dim2 d) const { return inner[d].valueAt(t); }
 
   D2<SBasis> toSBasis() const {return inner.toSBasis(); }
-
-protected:
-  BezierCurve(Point c[]) {
-    Coord x[order+1], y[order+1];
-    for(unsigned i = 0; i <= order; i++) {
-        x[i] = c[i][X]; y[i] = c[i][Y];
-    }
-    inner = Bezier(x, y);
-  }
 };
 
 // BezierCurve<0> is meaningless; specialize it out
-- 
2.32.0

