icecat: add release icecat-140.6.0-1gnu1 for aramo

This commit is contained in:
Ark74 2026-01-17 18:56:47 -06:00
parent 92fef42cd6
commit 17ba0259bf
3382 changed files with 457689 additions and 569094 deletions

View file

@ -82,7 +82,7 @@ class Queue {
}
T& Push(T&& aElement) {
MOZ_ASSERT(mCount < std::numeric_limits<uint32_t>::max());
MOZ_RELEASE_ASSERT(mCount < std::numeric_limits<uint32_t>::max());
if (!mHead) {
// First page
@ -133,7 +133,7 @@ class Queue {
bool IsEmpty() const { return !mCount; }
T Pop() {
MOZ_ASSERT(!IsEmpty());
MOZ_RELEASE_ASSERT(!IsEmpty());
T result = std::move(mHead->mEvents[mOffsetHead]);
mHead->mEvents[mOffsetHead].~T();
@ -158,12 +158,12 @@ class Queue {
}
T& FirstElement() {
MOZ_ASSERT(!IsEmpty());
MOZ_RELEASE_ASSERT(!IsEmpty());
return mHead->mEvents[mOffsetHead];
}
const T& FirstElement() const {
MOZ_ASSERT(!IsEmpty());
MOZ_RELEASE_ASSERT(!IsEmpty());
return mHead->mEvents[mOffsetHead];
}