diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-08-28 10:36:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-28 10:36:09 +0200 |
commit | 46809332ddb108ad93aaa5df18f6ffc7bf65d432 (patch) | |
tree | e2108d40ee401ad78c343689ab9b4f54b1cc9b95 /modules/gdscript/gdscript_cache.h | |
parent | 1ff139cb28137d5b1b492f74e5fc58cbeee01e4a (diff) | |
parent | 5033d5c71c1140262953c993568d48ed762648c5 (diff) |
Merge pull request #41547 from vnen/gdscript-2-fixes
Some more GDScript fixes
Diffstat (limited to 'modules/gdscript/gdscript_cache.h')
-rw-r--r-- | modules/gdscript/gdscript_cache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gdscript/gdscript_cache.h b/modules/gdscript/gdscript_cache.h index 770704d6eb..865df34051 100644 --- a/modules/gdscript/gdscript_cache.h +++ b/modules/gdscript/gdscript_cache.h @@ -70,9 +70,9 @@ public: class GDScriptCache { // String key is full path. - HashMap<String, Ref<GDScriptParserRef>> parser_map; - HashMap<String, Ref<GDScript>> shallow_gdscript_cache; - HashMap<String, Ref<GDScript>> full_gdscript_cache; + HashMap<String, GDScriptParserRef *> parser_map; + HashMap<String, GDScript *> shallow_gdscript_cache; + HashMap<String, GDScript *> full_gdscript_cache; HashMap<String, Set<String>> dependencies; friend class GDScript; |