From 3316719cde5d7a2f1dd9b7c9e1e188b94fa81f75 Mon Sep 17 00:00:00 2001 From: Andrei Tsurkan <6237485+equalent@users.noreply.github.com> Date: Sun, 10 May 2026 14:34:14 +0100 Subject: [PATCH] Fix IsSorted in UniqueList --- Sharpmake/UniqueList.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sharpmake/UniqueList.cs b/Sharpmake/UniqueList.cs index e6d2b52af..8950278d7 100644 --- a/Sharpmake/UniqueList.cs +++ b/Sharpmake/UniqueList.cs @@ -66,7 +66,7 @@ private bool IsSorted } else { - Interlocked.And(ref _modifierBits, ~(Int64)ModifierBits.DirtyBit); + Interlocked.And(ref _modifierBits, ~(Int64)ModifierBits.SortedBit); } } }