We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 071b7a4 + 3c4248f commit 7cf7ec7Copy full SHA for 7cf7ec7
1 file changed
CommonLibF4/include/RE/Bethesda/BSTArray.h
@@ -373,7 +373,7 @@ namespace RE
373
[[nodiscard]] constexpr size_type size() const noexcept { return _size; }
374
[[nodiscard]] constexpr size_type max_size() const noexcept { return std::numeric_limits<size_type>::max(); }
375
376
- [[nodiscard]] constexpr bool empty() const noexcept { size() == 0; }
+ [[nodiscard]] constexpr bool empty() const noexcept { return size() == 0; }
377
378
void reserve(size_type a_capacity)
379
{
0 commit comments