diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-12-16 19:13:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-16 19:13:35 +0100 |
commit | 9c7bc127b9f719b4fe6a14dd2c8745fc64cf1b32 (patch) | |
tree | 19ef5ec49f3737f9b44485740328d8f1a97085fe /modules/gdnative/include | |
parent | 169db6abdd9d8973822dc5f2a4ce5bcf00bb3f55 (diff) | |
parent | 4e25e5066bfd6a1ea9d5dbfa5db9e25b66b8aa02 (diff) |
Merge pull request #24385 from hpvb/reduce-string-coew
Reduce String CoW
Diffstat (limited to 'modules/gdnative/include')
-rw-r--r-- | modules/gdnative/include/gdnative/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/include/gdnative/string.h b/modules/gdnative/include/gdnative/string.h index 95ae42a9ec..2ca9fd9e15 100644 --- a/modules/gdnative/include/gdnative/string.h +++ b/modules/gdnative/include/gdnative/string.h @@ -79,7 +79,7 @@ void GDAPI godot_string_new(godot_string *r_dest); void GDAPI godot_string_new_copy(godot_string *r_dest, const godot_string *p_src); void GDAPI godot_string_new_with_wide_string(godot_string *r_dest, const wchar_t *p_contents, const int p_size); -wchar_t GDAPI *godot_string_operator_index(godot_string *p_self, const godot_int p_idx); +const wchar_t GDAPI *godot_string_operator_index(godot_string *p_self, const godot_int p_idx); wchar_t GDAPI godot_string_operator_index_const(const godot_string *p_self, const godot_int p_idx); const wchar_t GDAPI *godot_string_wide_str(const godot_string *p_self); |