Skip to content

Commit 7cf7ec7

Browse files
authored
Merge pull request #34 from derossm/patch-1
Update BSTArray.h
2 parents 071b7a4 + 3c4248f commit 7cf7ec7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CommonLibF4/include/RE/Bethesda/BSTArray.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ namespace RE
373373
[[nodiscard]] constexpr size_type size() const noexcept { return _size; }
374374
[[nodiscard]] constexpr size_type max_size() const noexcept { return std::numeric_limits<size_type>::max(); }
375375

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

378378
void reserve(size_type a_capacity)
379379
{

0 commit comments

Comments
 (0)