mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Misc: mac build fix
This commit is contained in:
@@ -97,7 +97,7 @@ class TC_COMMON_API TaskScheduler
|
||||
// Order tasks by its end
|
||||
std::weak_ordering operator<=> (Task const& other) const
|
||||
{
|
||||
return _end <=> other._end;
|
||||
return std::compare_weak_order_fallback(_end, other._end);
|
||||
}
|
||||
|
||||
// Compare tasks with its end
|
||||
|
||||
Reference in New Issue
Block a user