From 492285f681e68e61431380283e7a04f56de4cb08 Mon Sep 17 00:00:00 2001 From: DhruvMaroo Date: Sun, 30 May 2021 22:29:41 +0530 Subject: [PATCH] changed spaces to tabs --- include/core/String.hpp | 2 +- src/core/String.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/core/String.hpp b/include/core/String.hpp index ae3dd89e..fa3944d7 100644 --- a/include/core/String.hpp +++ b/include/core/String.hpp @@ -40,7 +40,7 @@ public: String(const wchar_t *contents); String(const wchar_t c); String(const String &other); - String(String&& other); + String(String&& other); ~String(); diff --git a/src/core/String.cpp b/src/core/String.cpp index 3414adfc..767578fb 100644 --- a/src/core/String.cpp +++ b/src/core/String.cpp @@ -74,8 +74,8 @@ String::String(const String &other) { } String::String(String&& other) { - godot::api->godot_string_new_copy(&_godot_string, &other._godot_string); - godot::api->godot_string_destroy(&_godot_string); + godot::api->godot_string_new_copy(&_godot_string, &other._godot_string); + godot::api->godot_string_destroy(&_godot_string); } String::~String() {