[base] Updated IsSortedAndUnique function.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako
2025-07-03 20:01:54 -03:00
committed by Konstantin Pastbin
parent b7b87f5530
commit 7b4862b442
7 changed files with 12 additions and 12 deletions

View File

@@ -89,7 +89,7 @@ public:
m_version = Version::V0;
}
ASSERT(std::is_sorted(std::cbegin(m_data), std::cend(m_data)), ());
CHECK(base::IsSortedAndUnique(m_data), ());
}
private: