diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-08 11:48:34 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-08 11:48:34 +0100 |
commit | 91dacb469d3ee942c35f5b73bfee50741ce74766 (patch) | |
tree | 8cea2cd8555ee967af3440449750d6ec47ce86d4 /core/core_constants.h | |
parent | c8c483cf57a768110fce57e509f9b855e69d34b7 (diff) | |
parent | 96a95cb9743e755f10fa6a14895ea099e5ac4c51 (diff) | |
download | redot-engine-91dacb469d3ee942c35f5b73bfee50741ce74766.tar.gz |
Merge pull request #51156 from Muller-Castro/value2ref
Add const lvalue ref to container parameters
Diffstat (limited to 'core/core_constants.h')
-rw-r--r-- | core/core_constants.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/core_constants.h b/core/core_constants.h index 51842490c8..82d626c749 100644 --- a/core/core_constants.h +++ b/core/core_constants.h @@ -45,7 +45,7 @@ public: static bool is_global_constant(const StringName &p_name); static int get_global_constant_index(const StringName &p_name); static bool is_global_enum(const StringName &p_enum); - static void get_enum_values(StringName p_enum, HashMap<StringName, int64_t> *p_values); + static void get_enum_values(const StringName &p_enum, HashMap<StringName, int64_t> *p_values); }; #endif // CORE_CONSTANTS_H |