diff options
| author | Nathan Warden | 2018-02-20 00:24:52 -0500 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-02-21 22:12:57 +0100 |
| commit | 9cfcf102a0ebfc5efc15b1acb22042fdbe2dffc3 (patch) | |
| tree | 5b04ef9d19bef98eefae5c751ef04cebb369e9aa /modules/mono/mono_gd/gd_mono_method.cpp | |
| parent | 8dc946c89c7907b33723c64f0a458100ae59b60f (diff) | |
| download | godot-9cfcf102a0ebfc5efc15b1acb22042fdbe2dffc3.tar.gz godot-9cfcf102a0ebfc5efc15b1acb22042fdbe2dffc3.tar.zst godot-9cfcf102a0ebfc5efc15b1acb22042fdbe2dffc3.zip | |
[Mono] Fixed "expression did not evaluate to a constant" compiler error for visual studio.
(cherry picked from commit 72fe70272d540afca691143d3a4f029176e37087)
Diffstat (limited to '')
| -rw-r--r-- | modules/mono/mono_gd/gd_mono_method.cpp | 7 |
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 df0985f6a..69040a3df 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 { |
