From 585429e345dd69222156ea4604230b969af25d96 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Fri, 27 Oct 2023 14:31:11 -0400 Subject: [PATCH] order --- include/blt/std/memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/blt/std/memory.h b/include/blt/std/memory.h index 3d19db7..7a24b5c 100755 --- a/include/blt/std/memory.h +++ b/include/blt/std/memory.h @@ -174,7 +174,7 @@ namespace blt T* _buffer; size_t _size; public: - scoped_buffer(): _size(0), _buffer(nullptr) + scoped_buffer(): _buffer(nullptr), _size(0) {} explicit scoped_buffer(size_t size): _size(size)