util/corestr.cpp, sound/sdl_sound.cpp: Added missing standard library headers. (#13249)

This commit is contained in:
Julian Sikorski 2025-01-20 19:52:03 +01:00 committed by GitHub
parent 136581dd90
commit 32d45e173b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@
#include <memory>
#include <cctype>
#include <cstdint>
#include <cstdlib>

View File

@ -21,6 +21,7 @@
#include <SDL2/SDL.h>
#include <algorithm>
#include <cmath>
#include <fstream>
#include <memory>