From 87d12595a24a9d3ba68932631c1b236da4227f42 Mon Sep 17 00:00:00 2001 From: WingHwy <127025413+WingHwy@users.noreply.github.com> Date: Thu, 19 Mar 2026 21:04:50 +0800 Subject: [PATCH] Update Wstring.h --- Wstring.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Wstring.h b/Wstring.h index 5195e2d6..d6b7415a 100644 --- a/Wstring.h +++ b/Wstring.h @@ -40,7 +40,7 @@ struct CharTrait return strncat(_Dest, _Source, _Count); } - char* Concat(char* _Destination, const char* _Source, size_t _Count) + char* Concat(char* _Destination, const char* _Source) { return strcat(_Destination, _Source); } @@ -101,7 +101,7 @@ struct WCharTrait return wcsncat(_Dest, _Source, _Count); } - wchar_t* Concat(wchar_t* _Destination, const wchar_t* _Source, size_t _Count) + wchar_t* Concat(wchar_t* _Destination, const wchar_t* _Source) { return wcscat(_Destination, _Source); }