diff options
| author | Lutzx <58432926+Lutzx@users.noreply.github.com> | 2023-05-08 01:23:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-07 20:23:12 -0400 |
| commit | 8bea68d1e6a5cd641ca3251363502d7073d4ee41 (patch) | |
| tree | 4170a0e4cefb8419a88a2a1d22d4ee8433c80be2 | |
| parent | 0167cd777a9c7168f23760293c79531e9e1f4993 (diff) | |
Add stdint headers (#1) (#2832)
* Add stdint header
* Add stdint header
Co-authored-by: Christopher Leggett <chris@leggett.dev>
| -rw-r--r-- | ZAPD/Declaration.h | 1 | ||||
| -rw-r--r-- | ZAPD/OutputFormatter.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ZAPD/Declaration.h b/ZAPD/Declaration.h index 45d36f4..64712d8 100644 --- a/ZAPD/Declaration.h +++ b/ZAPD/Declaration.h @@ -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; diff --git a/ZAPD/OutputFormatter.h b/ZAPD/OutputFormatter.h index 03abfdb..391f410 100644 --- a/ZAPD/OutputFormatter.h +++ b/ZAPD/OutputFormatter.h @@ -3,6 +3,7 @@ #include <map> #include <string> #include <vector> +#include <cstdint> class OutputFormatter { |
