summaryrefslogtreecommitdiffhomepage
path: root/editor/keys.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-11-18 11:34:03 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-11-18 12:29:24 +0100
commit7e79dbfedfc019b269139b5308e4811938b75278 (patch)
treeac441403afa8da5b6586d963e79f636f7bcef2bf /editor/keys.hpp
parentec4f8323fe075e8b8d716128996658a2a1a300d7 (diff)
compat: remove integer-types header
Other headers incldue <cstddef> and <cstdint> anyway.
Diffstat (limited to 'editor/keys.hpp')
-rw-r--r--editor/keys.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/keys.hpp b/editor/keys.hpp
index 611f78e1..12b96f27 100644
--- a/editor/keys.hpp
+++ b/editor/keys.hpp
@@ -1,5 +1,4 @@
#pragma once
-#include "compat/integer-types.hpp"
namespace floormat {
@@ -12,7 +11,7 @@ enum kmod : int {
kmod_mask = kmod_shift | kmod_ctrl | kmod_alt | kmod_super,
};
-enum key : std::uint32_t {
+enum key : unsigned {
key_noop,
key_camera_up, key_camera_left, key_camera_right, key_camera_down, key_camera_reset,
key_rotate_tile,