Removed unnecessary copy constructor

release/4.3a0
Richard Roberts 2013-10-13 22:21:04 +00:00
parent 9dfd9297f3
commit ab7fc66591
1 changed files with 0 additions and 3 deletions

View File

@ -47,9 +47,6 @@ public:
/// default constructor
Point2(): x_(0), y_(0) {}
/// copy constructor
Point2(const Point2 &p) : x_(p.x_), y_(p.y_) {}
/// construct from doubles
Point2(double x, double y): x_(x), y_(y) {}