diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-20 18:45:59 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-20 18:47:20 +0200 |
commit | c1be0706d4872f31bcc09c0963c7602ac19f8c76 (patch) | |
tree | f66a4c525eb522447d543429a5c026c9325d9b1f /logic/mappings.hpp | |
parent | 74ce228b1e3e756174c2e75579bfe500701ee570 (diff) |
logic/work: const correctness
Diffstat (limited to 'logic/mappings.hpp')
-rw-r--r-- | logic/mappings.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/logic/mappings.hpp b/logic/mappings.hpp index 726b0916..be7dd3a2 100644 --- a/logic/mappings.hpp +++ b/logic/mappings.hpp @@ -33,8 +33,6 @@ 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]; } template<typename f> void forall(f&& fun) { |