[Flang] Explicitly include cstdint (NFC)
authorNikita Popov <npopov@redhat.com>
Thu, 19 Jan 2023 13:28:58 +0000 (14:28 +0100)
committerNikita Popov <npopov@redhat.com>
Fri, 20 Jan 2023 09:03:21 +0000 (10:03 +0100)
This header uses std::int8_t, but does not include cstdint.

This fixes the build against libstc++ 13, where some indirect
header includes have been removed.

flang/include/flang/Parser/characters.h

index 1a7d395..239be8d 100644 (file)
@@ -14,6 +14,7 @@
 // also to accomodate Fortran tokenization.
 
 #include <cstddef>
+#include <cstdint>
 #include <optional>
 #include <string>