summaryrefslogtreecommitdiff
path: root/src/keycode.h
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2017-08-18 08:21:01 +0200
committerLoic Blot <loic.blot@unix-experience.fr>2017-08-18 08:21:01 +0200
commit951f1201c413c1137cfbef771bdd575c9c7e01bb (patch)
treeed026ec17a71e46232a87f8ee95e599503f335cb /src/keycode.h
parent1d086aee7cc193bed2f8ca09cc2e020f509378f1 (diff)
downloadminetest-951f1201c413c1137cfbef771bdd575c9c7e01bb.tar.gz
minetest-951f1201c413c1137cfbef771bdd575c9c7e01bb.tar.bz2
minetest-951f1201c413c1137cfbef771bdd575c9c7e01bb.zip
Modernize various files (src/k*, src/l*)
* range-based for loops * code style * C++ headers instead of C headers * Default operators
Diffstat (limited to 'src/keycode.h')
-rw-r--r--src/keycode.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/keycode.h b/src/keycode.h
index 9352fa4c0..7036705d1 100644
--- a/src/keycode.h
+++ b/src/keycode.h
@@ -30,7 +30,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
class KeyPress
{
public:
- KeyPress() {}
+ KeyPress() = default;
+
KeyPress(const char *name);
KeyPress(const irr::SEvent::SKeyInput &in, bool prefer_character = false);