From a08cdadcb10ebbfeb05be6edd59563e284246843 Mon Sep 17 00:00:00 2001 From: Shane Whitmire Date: Mon, 15 May 2023 20:44:54 -0500 Subject: [PATCH] Fix 2.6.x failing to compile on gcc 13.1.1 because of missing headers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I was getting this error until I added this header: /home/dogunbound/SFML/SFML/src/SFML/Audio/SoundFileReaderMp3.cpp:68:23: error: ‘uint64_t’ is not a member of ‘std’; This is a fix --- src/SFML/Audio/SoundFileReaderMp3.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SFML/Audio/SoundFileReaderMp3.cpp b/src/SFML/Audio/SoundFileReaderMp3.cpp index a332708c..7d980a94 100644 --- a/src/SFML/Audio/SoundFileReaderMp3.cpp +++ b/src/SFML/Audio/SoundFileReaderMp3.cpp @@ -55,6 +55,7 @@ #include #include #include +#include namespace