Skip to content

Commit

Permalink
Merge pull request #34 from derossm/patch-1
Browse files Browse the repository at this point in the history
Update BSTArray.h
  • Loading branch information
shad0wshayd3 authored Dec 9, 2024
2 parents 071b7a4 + 3c4248f commit 7cf7ec7
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 7cf7ec7

Please sign in to comment.