summaryrefslogtreecommitdiffstats
path: root/src/math/intpoint.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/intpoint.h')
-rw-r--r--src/math/intpoint.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/math/intpoint.h b/src/math/intpoint.h
index 8e13b19..0f59af6 100644
--- a/src/math/intpoint.h
+++ b/src/math/intpoint.h
@@ -21,6 +21,8 @@
#pragma once
+
+// Math module namespace
namespace Math {
/**
@@ -39,4 +41,5 @@ struct IntPoint
IntPoint(int aX = 0, int aY = 0) : x(aX), y(aY) {}
};
-}; // namespace Math
+
+} // namespace Math