From 6bea6f87f5a0a4f10b2a6e34a9edccf6cb1f6540 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Tue, 20 Feb 2024 15:22:15 -0500 Subject: [PATCH] unused var fix --- include/blt/std/vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/blt/std/vector.h b/include/blt/std/vector.h index 543148e..ef5e0bd 100644 --- a/include/blt/std/vector.h +++ b/include/blt/std/vector.h @@ -229,7 +229,7 @@ namespace blt constexpr inline void reserve(size_t size) { - expand(size_); + expand(size); } [[nodiscard]] constexpr inline size_t size() const