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

(synced from a5e518ec7a)
This commit is contained in:
2020-11-21 23:21:11 -06:00
parent e501cf2193
commit 0746f3d8f3
+1 -1
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;