From 3c4c1d32667e823f820af04f5051a02391df97d8 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Sun, 14 Jan 2024 14:09:04 -0700 Subject: [PATCH] Add missing `std::` namespace --- src/SFML/System/Err.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SFML/System/Err.cpp b/src/SFML/System/Err.cpp index 828d022b6..b15d4aa5b 100644 --- a/src/SFML/System/Err.cpp +++ b/src/SFML/System/Err.cpp @@ -85,7 +85,7 @@ private: { // Print the contents of the write buffer into the standard error output const auto size = static_cast(pptr() - pbase()); - fwrite(pbase(), 1, size, stderr); + std::fwrite(pbase(), 1, size, stderr); // Reset the pointer position to the beginning of the write buffer setp(pbase(), epptr());