sync code

This commit is contained in:
Ned Wright
2024-09-17 10:53:09 +00:00
parent 3fe0b42fcd
commit 586150fe4f
143 changed files with 1886 additions and 380 deletions

View File

@@ -110,7 +110,9 @@ template <typename Key>
const Key &
Table<Key>::Impl::ExpList::getEarliest() const
{
dbgAssert(!list.empty()) << "Cannot access the earliest member of an empty list";
dbgAssert(!list.empty())
<< AlertInfo(AlertTeam::CORE, "table")
<< "Cannot access the earliest member of an empty list";
return list.back().getKey();
}