aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)
{
}