[ox/std] Make Vector::size() nodiscard

This commit is contained in:
Gary Talent 2020-11-21 23:21:11 -06:00
parent 381f2b05e3
commit a5e518ec7a

View File

@ -50,7 +50,7 @@ class Vector {
[[nodiscard]] const T &back() const noexcept; [[nodiscard]] const T &back() const noexcept;
std::size_t size() const noexcept; [[nodiscard]] std::size_t size() const noexcept;
[[nodiscard]] bool empty() const; [[nodiscard]] bool empty() const;