diff options
Diffstat (limited to 'platform/macos/key_mapping_macos.mm')
-rw-r--r-- | platform/macos/key_mapping_macos.mm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/macos/key_mapping_macos.mm b/platform/macos/key_mapping_macos.mm index 7f64ebb734..db3fa4e02d 100644 --- a/platform/macos/key_mapping_macos.mm +++ b/platform/macos/key_mapping_macos.mm @@ -30,12 +30,12 @@ #include "key_mapping_macos.h" -#import <Carbon/Carbon.h> -#import <Cocoa/Cocoa.h> - #include "core/templates/hash_map.h" #include "core/templates/hash_set.h" +#import <Carbon/Carbon.h> +#import <Cocoa/Cocoa.h> + struct HashMapHasherKeys { static _FORCE_INLINE_ uint32_t hash(const Key p_key) { return hash_fmix32(static_cast<uint32_t>(p_key)); } static _FORCE_INLINE_ uint32_t hash(const char32_t p_uchar) { return hash_fmix32(p_uchar); } |