diff options
author | Chris Robinson <[email protected]> | 2023-06-01 19:05:57 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-06-01 19:05:57 -0700 |
commit | 6752d5516c8b30fe7db559c7f3a1423705d2a4fd (patch) | |
tree | 13e0d76743ed807ffde3c0acd17a96c9680b1047 /al | |
parent | 2b7ab0b75086f3d73a7ffe9bc05a80e5d9c625f5 (diff) |
Use cinttypes instead of inttypes.h in C++
Diffstat (limited to 'al')
-rw-r--r-- | al/source.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/source.cpp b/al/source.cpp index 8f4d4d48..7e425d43 100644 --- a/al/source.cpp +++ b/al/source.cpp @@ -27,11 +27,11 @@ #include <atomic> #include <cassert> #include <chrono> +#include <cinttypes> #include <climits> #include <cmath> #include <cstdint> #include <functional> -#include <inttypes.h> #include <iterator> #include <limits> #include <memory> |