diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-04-11 15:54:06 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-04-11 15:54:21 +0200 |
commit | 92b9806dcc98bc5ffbee6a7ca11090a926df0b3a (patch) | |
tree | 962057021fc84955940e74af62a62b2bfeab99e4 /platform/ios | |
parent | 6a655975694655a1ec0298345afbf5fad5148a72 (diff) | |
download | redot-engine-92b9806dcc98bc5ffbee6a7ca11090a926df0b3a.tar.gz |
Windows TTS: Use HashMap instead of RBMap for ids
And fixup includes in other implementations.
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/tts_ios.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/tts_ios.h b/platform/ios/tts_ios.h index 2d104de8ae..7f9d30b22b 100644 --- a/platform/ios/tts_ios.h +++ b/platform/ios/tts_ios.h @@ -38,8 +38,8 @@ #endif #include "core/string/ustring.h" +#include "core/templates/hash_map.h" #include "core/templates/list.h" -#include "core/templates/rb_map.h" #include "core/variant/array.h" #include "servers/display_server.h" |