Skip to content

Commit

Permalink
fix compilation with GCC 15
Browse files Browse the repository at this point in the history
Summary:
`<cstdint>` now needs to be included before using `int*_t` and `uint*_t`

https://gcc.gnu.org/gcc-15/porting_to.html#header-dep-changes

Reviewed By: jbeshay

Differential Revision: D69273578

fbshipit-source-id: 2ecb604cd40ff7064792287bf30c5695e7a898b5
  • Loading branch information
michel-slm authored and facebook-github-bot committed Feb 7, 2025
1 parent 7862103 commit 0ca2b8b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#pragma once

#include <cstdint>
#include <memory>
#include <string>

Expand Down

0 comments on commit 0ca2b8b

Please sign in to comment.