Skip to content

Commit 3a3c50e

Browse files
committed
Add missing include
GCC 13 no longer implicitly drags in stdint as an include. This is a fix-up to bdd42d3, which introduced the need for stdint types.
1 parent 08a466d commit 3a3c50e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/goto-programs/elf_reader.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ Module: Read ELF
1010
/// Read ELF
1111

1212
#include "elf_reader.h"
13+
1314
#include <util/exception_utils.h>
1415

16+
#include <cstdint>
1517
#include <istream>
1618

1719
static void u16_to_native_endian_inplace(bool le_input, uint16_t &input)

0 commit comments

Comments
 (0)