You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Remove unnecessary this-> expressions
This commit is contained in:
@@ -223,7 +223,7 @@ public:
|
||||
}
|
||||
|
||||
bool operator!=(const DataType &p_other) const {
|
||||
return !(this->operator==(p_other));
|
||||
return !(*this == p_other);
|
||||
}
|
||||
|
||||
void operator=(const DataType &p_other) {
|
||||
|
||||
Reference in New Issue
Block a user