Skip to content

Commit

Permalink
Update BSTArray.h
Browse files Browse the repository at this point in the history
added missing return keyword in BSTArray::empty()
  • Loading branch information
derossm authored Dec 7, 2024
1 parent 071b7a4 commit 3c4248f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CommonLibF4/include/RE/Bethesda/BSTArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ namespace RE
[[nodiscard]] constexpr size_type size() const noexcept { return _size; }
[[nodiscard]] constexpr size_type max_size() const noexcept { return std::numeric_limits<size_type>::max(); }

[[nodiscard]] constexpr bool empty() const noexcept { size() == 0; }
[[nodiscard]] constexpr bool empty() const noexcept { return size() == 0; }

void reserve(size_type a_capacity)
{
Expand Down

0 comments on commit 3c4248f

Please sign in to comment.