summaryrefslogtreecommitdiffstats
path: root/core/doc_data.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-05-16 11:59:38 +0200
committerGitHub <noreply@github.com>2022-05-16 11:59:38 +0200
commitc1277c2183eaacb9ae49f9fef0c57443b934b72b (patch)
tree434b526eb286850ebccc6d2c998a7d90fdb8b5e2 /core/doc_data.h
parent396def9b66c476f7834604adb7136ca903ed01be (diff)
parent746dddc0673d7261f19b1e056e90e6e3a49ef33a (diff)
downloadredot-engine-c1277c2183eaacb9ae49f9fef0c57443b934b72b.tar.gz
Merge pull request #60999 from reduz/replace-rbhash-by-hashmap
Diffstat (limited to 'core/doc_data.h')
-rw-r--r--core/doc_data.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/doc_data.h b/core/doc_data.h
index 194a39a729..af20b717d7 100644
--- a/core/doc_data.h
+++ b/core/doc_data.h
@@ -32,7 +32,7 @@
#define DOC_DATA_H
#include "core/io/xml_parser.h"
-#include "core/templates/map.h"
+#include "core/templates/rb_map.h"
#include "core/variant/variant.h"
struct ScriptMemberInfo {
@@ -161,7 +161,7 @@ public:
Vector<MethodDoc> operators;
Vector<MethodDoc> signals;
Vector<ConstantDoc> constants;
- Map<String, String> enums;
+ HashMap<String, String> enums;
Vector<PropertyDoc> properties;
Vector<ThemeItemDoc> theme_properties;
bool is_script_doc = false;