aboutsummaryrefslogtreecommitdiffstats
path: root/include/common.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-06 08:51:53 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-06 08:51:53 -0500
commitefcf1a88cd0d0bee3973705b5975827be97f5a3a (patch)
treef458ac0c456e09ed236c7c93379a371617325ead /include/common.hpp
parentcbd154a4834f56146dbe744ee2d2c6dccc04c5cb (diff)
particles, rain
Diffstat (limited to 'include/common.hpp')
-rw-r--r--include/common.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/common.hpp b/include/common.hpp
index 19af420..71039c7 100644
--- a/include/common.hpp
+++ b/include/common.hpp
@@ -91,11 +91,11 @@ struct vec2 {
}
template<typename T>
- const vec2 operator+(const T &n) {
+ vec2 operator+(T n) const {
return vec2 (x + n, y + n);
}
- const vec2 operator+(const vec2 &v) {
+ vec2 operator+(const vec2 &v) {
return vec2 (x + v.x, y + v.y);
}