Skip to content

Commit f6c08fe

Browse files
committed
Fix pioasm build failure caused by GCC 15 changes (#2448)
1 parent 550aa09 commit f6c08fe

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

tools/pioasm/output_format.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#ifndef _OUTPUT_FORMAT_H
88
#define _OUTPUT_FORMAT_H
99

10+
#include <cstdint>
1011
#include <vector>
1112
#include <map>
1213
#include <string>
@@ -120,4 +121,4 @@ struct output_format {
120121
output_format(std::string name) : name(std::move(name)) {}
121122
};
122123

123-
#endif
124+
#endif

tools/pioasm/pio_types.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#ifndef _PIO_TYPES_H
88
#define _PIO_TYPES_H
99

10+
#include <cstdint>
1011
#include <string>
1112
#include <map>
1213
#include <set>

0 commit comments

Comments
 (0)