File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -50,15 +50,14 @@ class GodotScript {
5050#define GODOT_NATIVE_TERMINATE (arg ) extern " C" void GD_EXPORT godot_native_terminate (arg)
5151
5252
53-
5453#define GODOT_CLASS (Name ) \
5554 public: inline static char *___get_type_name () { return (char *) #Name; } \
5655 private:
5756
5857#define GODOT_SUBCLASS (Name, Base ) \
5958 public: inline static char *___get_type_name () { return (char *) #Name; } \
6059 inline static char *___get_base_type_name () { return (char *) #Base; } \
61- inline Name (godot_object *o) : Base(o) {} \
60+ // inline Name(godot_object *o) : Base(o) {} \
6261 private:
6362
6463
Original file line number Diff line number Diff line change @@ -84,14 +84,14 @@ bool String::operator !=(const String &s)
8484String String::operator +(const String &s)
8585{
8686 String new_string = *this ;
87- godot_string_operator_plus (&new_string._godot_string , &s._godot_string );
87+ new_string. _godot_string = godot_string_operator_plus (&new_string._godot_string , &s._godot_string );
8888
8989 return new_string;
9090}
9191
9292void String::operator +=(const String &s)
9393{
94- godot_string_operator_plus (&_godot_string, &s._godot_string );
94+ _godot_string = godot_string_operator_plus (&_godot_string, &s._godot_string );
9595}
9696
9797void String::operator +=(const wchar_t c)
You can’t perform that action at this time.
0 commit comments