util/StaticVector: use emplace_back() to implement push_back()

For this class, both are equal.
This commit is contained in:
Max Kellermann 2023-08-14 15:26:10 +02:00 committed by Max Kellermann
parent 339b9f6e7b
commit d5b1ca1a52
1 changed files with 2 additions and 10 deletions

View File

@ -192,19 +192,11 @@ public:
}
constexpr void push_back(const_reference value) {
if (full())
throw std::bad_alloc{};
::new(&array[the_size]) T(value);
++the_size;
emplace_back(value);
}
constexpr void push_back(T &&value) {
if (full())
throw std::bad_alloc{};
::new(&array[the_size]) T(std::move(value));
++the_size;
emplace_back(std::move(value));
}
template<typename... Args>