diff options
author | Karroffel <therzog@mail.de> | 2017-03-15 18:13:22 +0100 |
---|---|---|
committer | Karroffel <therzog@mail.de> | 2017-03-15 18:13:29 +0100 |
commit | bce9ac109d63d67c3e7f0b25df8aa9d72e094d1b (patch) | |
tree | 681da6ad6b24e08c1189047cd6513bb2dfb27817 /include/godot_cpp/core/String.cpp | |
parent | b0981479779f2deb3beb2fca5507453d78572bdb (diff) | |
download | redot-cpp-bce9ac109d63d67c3e7f0b25df8aa9d72e094d1b.tar.gz |
mistakes were made. I undid them.
Diffstat (limited to 'include/godot_cpp/core/String.cpp')
-rw-r--r-- | include/godot_cpp/core/String.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/godot_cpp/core/String.cpp b/include/godot_cpp/core/String.cpp index 83b1f90..52923ff 100644 --- a/include/godot_cpp/core/String.cpp +++ b/include/godot_cpp/core/String.cpp @@ -114,7 +114,7 @@ bool String::operator >=(const String &s) return !(*this < s); } -const wchar_t *String::c_string() +const wchar_t *String::c_string() const { return godot_string_c_str(&_godot_string); } |