aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2012-02-17 21:39:45 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:51 +0100
commit2aba7ea7a02f967efc40edb332ab42c56ed92ce6 (patch)
treede10871347169f1799be2c5aa60e1081fbf14608
parentc8b95e42225e203f590a79e563b70d0355dbd7db (diff)
downloadusdx-2aba7ea7a02f967efc40edb332ab42c56ed92ce6.tar.gz
usdx-2aba7ea7a02f967efc40edb332ab42c56ed92ce6.tar.xz
usdx-2aba7ea7a02f967efc40edb332ab42c56ed92ce6.zip
utils: reformated contructor calls
-rw-r--r--src/utils/point.cpp6
1 files 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)
{
}