GCC 13 update. Move #include <cstdint> to header. Fixes #1363 (#1367)

This commit is contained in:
djazz 2023-05-24 14:51:59 +02:00 committed by GitHub
parent 257959bc07
commit 7070d230c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,6 @@
#include <array>
#include <sstream>
#include <iomanip>
#include <cstdint>
#include "pio_disassembler.h"
extern "C" void disassemble(char *buf, int buf_len, uint16_t inst, uint sideset_bits, bool sideset_opt) {

View File

@ -10,6 +10,7 @@
#ifdef __cplusplus
#include <string>
#include <cstdint>
typedef unsigned int uint;