Add stdint headers (#1) (#2832)

* Add stdint header

* Add stdint header

Co-authored-by: Christopher Leggett <chris@leggett.dev>
This commit is contained in:
Lutzx 2023-05-08 01:23:12 +01:00 committed by GitHub
parent 91bd693ff6
commit fac898d759
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
#include <string>
#include <vector>
#include <cstdint>
// TODO: should we drop the `_t` suffix because of UNIX compliance?
typedef uint32_t segptr_t;

View File

@ -3,6 +3,7 @@
#include <map>
#include <string>
#include <vector>
#include <cstdint>
class OutputFormatter
{