summaryrefslogtreecommitdiff
path: root/modules/mono
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-02-20 09:39:18 +0100
committerGitHub <noreply@github.com>2018-02-20 09:39:18 +0100
commitc62a6942dcdf3b1cbdafa3d858cf9694effeee98 (patch)
tree79affc1112257c826914f27b950b7b02a404c1c7 /modules/mono
parent1a604fc858b1c988b22663c9a6220e897c24df4a (diff)
parent72fe70272d540afca691143d3a4f029176e37087 (diff)
Merge pull request #16845 from NathanWarden/fix_vs_no_compile
[Mono] Fixed "expression did not evaluate to a constant" compiler error for Windows.
Diffstat (limited to 'modules/mono')
-rw-r--r--modules/mono/mono_gd/gd_mono_method.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/mono/mono_gd/gd_mono_method.cpp b/modules/mono/mono_gd/gd_mono_method.cpp
index df0985f6ac..69040a3df8 100644
--- a/modules/mono/mono_gd/gd_mono_method.cpp
+++ b/modules/mono/mono_gd/gd_mono_method.cpp
@@ -230,11 +230,12 @@ String GDMonoMethod::get_signature_desc(bool p_namespaces) const {
}
void GDMonoMethod::get_parameter_names(Vector<StringName> &names) const {
- const char *_names[params_count];
- mono_method_get_param_names(mono_method, _names);
+ const char *_names = memnew_arr(char, params_count);
+ mono_method_get_param_names(mono_method, &_names);
for (int i = 0; i < params_count; ++i) {
- names.push_back(StringName(_names[i]));
+ names.push_back(StringName(&_names[i]));
}
+ memdelete_arr(_names);
}
void GDMonoMethod::get_parameter_types(Vector<ManagedType> &types) const {