From 2aba7ea7a02f967efc40edb332ab42c56ed92ce6 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Fri, 17 Feb 2012 21:39:45 +0100 Subject: utils: reformated contructor calls --- src/utils/point.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/utils/point.cpp b/src/utils/point.cpp index c4306ea7..a72bfda6 100644 --- a/src/utils/point.cpp +++ b/src/utils/point.cpp @@ -28,11 +28,13 @@ namespace usdx { - Point::Point(float x, float y) : x(x), y(y) + Point::Point(float x, float y) : + x(x), y(y) { } - Point::Point(const Point& point) : x(point.x), y(point.y) + Point::Point(const Point& point) : + x(point.x), y(point.y) { } -- cgit v1.2.3