Browse Source

changed spaces to tabs

DhruvMaroo 4 years ago
parent
commit
492285f681
2 changed files with 3 additions and 3 deletions
  1. 1 1
      include/core/String.hpp
  2. 2 2
      src/core/String.cpp

+ 1 - 1
include/core/String.hpp

@@ -40,7 +40,7 @@ public:
 	String(const wchar_t *contents);
 	String(const wchar_t *contents);
 	String(const wchar_t c);
 	String(const wchar_t c);
 	String(const String &other);
 	String(const String &other);
-    String(String&& other);
+	String(String&& other);
 
 
 	~String();
 	~String();
 
 

+ 2 - 2
src/core/String.cpp

@@ -74,8 +74,8 @@ String::String(const String &other) {
 }
 }
 
 
 String::String(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() {
 String::~String() {