summaryrefslogtreecommitdiffhomepage
path: root/opentrack
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-12-18 17:26:42 +0100
committerStanislaw Halik <sthalik@misaki.pl>2014-12-18 17:26:42 +0100
commitd5ce4687939d0bbc85a8dbaab51aab9b62b08d0e (patch)
tree45445b2898188130a2e30309d9f66843be2a075e /opentrack
parentf617bebaa3fd041159a8e835a2c1792916432e9c (diff)
const correctness
Diffstat (limited to 'opentrack')
-rw-r--r--opentrack/simple-mat.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/opentrack/simple-mat.hpp b/opentrack/simple-mat.hpp
index 447327a8..f1391f3c 100644
--- a/opentrack/simple-mat.hpp
+++ b/opentrack/simple-mat.hpp
@@ -65,7 +65,7 @@ struct Mat
return ret;
}
- Mat<num, w, h> t()
+ Mat<num, w, h> t() const
{
Mat<num, w, h> ret;