From: johanengelen Date: Mon, 14 Jul 2008 23:01:40 +0000 (+0000) Subject: make SPCurve constructors explicit. (so e.g. it is impossible to write SPCurve a... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=dfd53de36a3a3a6784b594071c641afa8dd697ac;p=inkscape.git make SPCurve constructors explicit. (so e.g. it is impossible to write SPCurve a = 1;) --- diff --git a/src/display/curve.h b/src/display/curve.h index 6697987ca..b2b1559af 100644 --- a/src/display/curve.h +++ b/src/display/curve.h @@ -31,8 +31,8 @@ struct SPObject; class SPCurve { public: /* Constructors */ - SPCurve(guint length = SP_CURVE_LENSTEP); - SPCurve(Geom::PathVector const& pathv); + explicit SPCurve(guint length = SP_CURVE_LENSTEP); + explicit SPCurve(Geom::PathVector const& pathv); static SPCurve * new_from_bpath(NArtBpath *bpath); static SPCurve * new_from_foreign_bpath(NArtBpath const *bpath); static SPCurve * new_from_rect(Geom::Rect const &rect);