diff --git a/CommonLibF4/include/RE/Bethesda/BSTArray.h b/CommonLibF4/include/RE/Bethesda/BSTArray.h index 693bba6c..5f12db49 100644 --- a/CommonLibF4/include/RE/Bethesda/BSTArray.h +++ b/CommonLibF4/include/RE/Bethesda/BSTArray.h @@ -386,7 +386,7 @@ namespace RE void shrink_to_fit() { reserve_exact(size()); } - template + template void assign(ForwardIt a_first, ForwardIt a_last) { auto out = begin(); @@ -481,8 +481,7 @@ namespace RE } template - reference emplace_back(Args&&... a_args) - requires(std::constructible_from) + reference emplace_back(Args&&... a_args) requires(std::constructible_from) { return *emplace(end(), std::forward(a_args)...); }