From 1a72728aeb9299d168868bb1c79f319031d9d8a1 Mon Sep 17 00:00:00 2001 From: Brett Date: Mon, 6 Nov 2023 00:43:44 -0500 Subject: [PATCH] warning fix --- 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 2a669f6..173c8fd 100755 --- a/include/blt/std/memory.h +++ b/include/blt/std/memory.h @@ -171,7 +171,7 @@ namespace blt class scoped_buffer { private: - T* _buffer; + T* _buffer = nullptr; size_t _size; public: scoped_buffer(): _buffer(nullptr), _size(0)