Fix GCC 13 build error.

GCC removed the cstdint header from many other headers, so we can't rely on transitive includes to define these types. This led to a compile error in this file due to no more transitive inclusion.
This commit is contained in:
Steven Falco 2023-01-20 21:13:34 +00:00 committed by Ian McInerney
parent 5991842ae4
commit 5a36c3685e
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <cstdint>
#include <array>
#include <vector>
#include <string>