[util] Include cstdint to fix compilation with GCC 13

This commit is contained in:
František Zatloukal 2023-03-23 21:38:02 +01:00 committed by Philip Rebohle
parent d11878e793
commit 1a5afc77b1
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#pragma once
#include <cstdint>
#include <string>
#include <unordered_map>

View File

@ -29,6 +29,7 @@
#include "util_likely.h"
#include "util_math.h"
#include <cstdint>
#include <cstring>
#include <iterator>
#include <type_traits>