From 7a406c79bf07499b98540fefc8ae3f82bb96d7bf Mon Sep 17 00:00:00 2001 From: WingHwy <127025413+WingHwy@users.noreply.github.com> Date: Thu, 19 Mar 2026 23:28:41 +0800 Subject: [PATCH] Update Wstring.h Remove `explicit` from copy constructor for natural implicit copy. --- Wstring.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wstring.h b/Wstring.h index 5195e2d6..d7566e9b 100644 --- a/Wstring.h +++ b/Wstring.h @@ -151,7 +151,7 @@ class Wstring_base } } - explicit Wstring_base(const My_Type& another) noexcept : Wstring_base {} + Wstring_base(const My_Type& another) noexcept : Wstring_base {} { if (another.Buffer) {