summaryrefslogtreecommitdiffhomepage
path: root/logic
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-01-26 09:53:08 +0100
committerStanislaw Halik <sthalik@misaki.pl>2018-01-26 09:56:09 +0100
commitf432f7836a3ec2368260a51d352188e465d9c0cc (patch)
tree6e813389bb7192ebc44cbebbef595a3f8f0567da /logic
parentb7efdfe078804b9f0d67c509647b7a9f4dc6fa0a (diff)
CLion pedantry
Fix few of the inspection warnings from CLion that make any sense at all.
Diffstat (limited to 'logic')
-rw-r--r--logic/mappings.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/mappings.hpp b/logic/mappings.hpp
index d08ae29c..f88e6820 100644
--- a/logic/mappings.hpp
+++ b/logic/mappings.hpp
@@ -34,7 +34,7 @@ public:
Map& operator()(int i) { return axes[i]; }
const Map& operator()(int i) const { return axes[i]; }
Map& operator()(unsigned i) { return axes[i]; }
- const Map& operator()(unsigned i) const { return axes[i]; }
+ const Map& operator()(unsigned i) const { return axes[i]; }
template<typename f> void forall(f&& fun)
{