Skip to content

Commit

Permalink
Fix missing cstdint include in utils with GCC v13.2
Browse files Browse the repository at this point in the history
Otherwise, building fails because various integer types (uint16_t and similar)
are not defined.
  • Loading branch information
ivilata committed Dec 19, 2023
1 parent 4a00a45 commit 51b32b1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <stdio.h>
#include <cmath>
#include <cstdio>
#include <cstdint>

#ifdef __cplusplus
extern "C" {
Expand Down

0 comments on commit 51b32b1

Please sign in to comment.