From ad039537955b9718a3d1aa9e71599c41d010920e Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Fri, 24 May 2024 09:54:51 -0600 Subject: [PATCH] Use `std::` namespace --- src/SFML/System/String.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SFML/System/String.cpp b/src/SFML/System/String.cpp index 36c9fb250..e072c5a6a 100644 --- a/src/SFML/System/String.cpp +++ b/src/SFML/System/String.cpp @@ -166,7 +166,7 @@ String::String(const char* ansiString, const std::locale& locale) { if (ansiString) { - const std::size_t length = strlen(ansiString); + const std::size_t length = std::strlen(ansiString); if (length > 0) { m_string.reserve(length + 1);