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:
commit
49be5b6405
3 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
#ifndef MWINPUT_CONTROLSWITCH_H
|
||||
#define MWINPUT_CONTROLSWITCH_H
|
||||
|
||||
#include <cstdint>
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef MISC_UTF8ITER_HPP
|
||||
#define MISC_UTF8ITER_HPP
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstring>
|
||||
#include <tuple>
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#define UTILS_HPP
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <vector>
|
||||
|
|
Loading…
Reference in a new issue