Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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