mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-26 20:02:25 +01:00
@@ -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