You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
ICU: Update to version 70.1
This commit is contained in:
4
thirdparty/icu4c/common/unicode/uobject.h
vendored
4
thirdparty/icu4c/common/unicode/uobject.h
vendored
@@ -262,8 +262,8 @@ protected:
|
||||
// UObject &operator=(const UObject &other) { return *this; }
|
||||
|
||||
// comparison operators
|
||||
virtual inline UBool operator==(const UObject &other) const { return this==&other; }
|
||||
inline UBool operator!=(const UObject &other) const { return !operator==(other); }
|
||||
virtual inline bool operator==(const UObject &other) const { return this==&other; }
|
||||
inline bool operator!=(const UObject &other) const { return !operator==(other); }
|
||||
|
||||
// clone() commented out from the base class:
|
||||
// some compilers do not support co-variant return types
|
||||
|
||||
Reference in New Issue
Block a user