Skip to content

Commit

Permalink
build: include cstdint to fix compilation under GCC 13 (#114)
Browse files Browse the repository at this point in the history
Since GCC 13, std::uint64_t and friends require an explicit include of
`<cstdint>`.
See also https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes

Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
  • Loading branch information
malt3 and katexochen authored Apr 23, 2024
1 parent e576445 commit 3a8e1e9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/datadog/parse_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

// This component provides parsing-related miscellanea.

#include <cstdint>
#include <string>
#include <unordered_map>
#include <vector>
Expand Down

0 comments on commit 3a8e1e9

Please sign in to comment.