Fix build with GCC 13 (#6632)
Building with GCC 13 failed because for example std::int32_t was not found. Porting guide [1] suggested to add explicit includes for <cstdint> if necessary, so did just that. [1]: https://gcc.gnu.org/gcc-13/porting_to.html
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
#include <boost/optional.hpp>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdint>
|
||||
#include <limits>
|
||||
#include <map>
|
||||
#include <unordered_map>
|
||||
|
||||
Reference in New Issue
Block a user