Fix build failure from lack of <cstdint> headers

Signed-off-by: Patrick <cowinkkeydinkinc@gmail.com>
This commit is contained in:
Patrick 2023-05-16 17:27:17 -06:00
parent fd1cd2cf81
commit d57c28e205
No known key found for this signature in database
GPG Key ID: 12CBC6BA9146521A
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@
#include <string>
#include <sstream>
#include <cstdint>
#define POMME_DEBUG_MEMORY false
#define POMME_DEBUG_SOUND false

View File

@ -1,5 +1,6 @@
#include "Utilities/bigendianstreams.h"
#include "Utilities/IEEEExtended.h"
#include <cstdint>
Pomme::StreamPosGuard::StreamPosGuard(std::istream& theStream) :
stream(theStream)