summaryrefslogtreecommitdiffstats
path: root/src/core/String.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/String.cpp')
-rw-r--r--src/core/String.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/core/String.cpp b/src/core/String.cpp
index 04b7387..68ead4d 100644
--- a/src/core/String.cpp
+++ b/src/core/String.cpp
@@ -75,14 +75,10 @@ String::String(const String &other) {
String::String(String&& other) {
_godot_string = other._godot_string;
- other._deleted = true;
}
String::~String() {
- if (!_deleted) {
- godot::api->godot_string_destroy(&_godot_string);
- _deleted = true;
- }
+ godot::api->godot_string_destroy(&_godot_string);
}
wchar_t &String::operator[](const int idx) {
@@ -105,7 +101,6 @@ void String::operator=(const String &s) {
void String::operator=(String&& s) {
godot::api->godot_string_destroy(&_godot_string);
_godot_string = s._godot_string;
- s._deleted = true;
}
bool String::operator==(const String &s) const {