code review: `std::deque::empty()` is not `constexpr`

This commit is contained in:
Yat Ho 2024-05-05 10:08:09 +08:00
parent 39e05a8520
commit 48e7001694
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public:
return size > 0 && size <= std::numeric_limits<int>::max();
}
[[nodiscard]] constexpr auto is_complete() const noexcept
[[nodiscard]] auto is_complete() const noexcept
{
return std::empty(pieces_needed_);
}