1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-03 15:19:42 +00:00

Merge pull request #674 from trofi/gcc-13-fix

Fix `gcc-13` build failures: missing `<cstdint>` includes
This commit is contained in:
David Cernat 2024-02-13 02:02:13 +02:00 committed by GitHub
commit 49be5b6405
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 0 deletions

View file

@ -1,6 +1,7 @@
#ifndef MWINPUT_CONTROLSWITCH_H
#define MWINPUT_CONTROLSWITCH_H
#include <cstdint>
#include <map>
#include <string>

View file

@ -1,6 +1,7 @@
#ifndef MISC_UTF8ITER_HPP
#define MISC_UTF8ITER_HPP
#include <cstdint>
#include <cstring>
#include <tuple>

View file

@ -2,6 +2,7 @@
#define UTILS_HPP
#include <algorithm>
#include <cstdint>
#include <string>
#include <sstream>
#include <vector>