From f5f9dae44738c8f7be16a831a5e270845ab82bc5 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Mon, 30 May 2022 21:10:08 +0200 Subject: [PATCH] Fix va --- src/common/utils/string.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/common/utils/string.hpp b/src/common/utils/string.hpp index d634ffe8..04042cb9 100644 --- a/src/common/utils/string.hpp +++ b/src/common/utils/string.hpp @@ -45,9 +45,7 @@ namespace utils::string class entry final { public: - entry() = default; - - explicit entry(const size_t _size = MinBufferSize) : size(_size), buffer(nullptr) + entry(const size_t _size = MinBufferSize) : size(_size), buffer(nullptr) { if (this->size < MinBufferSize) this->size = MinBufferSize; this->allocate();