From e658f50da2f0b142f672452abad987341e81efd4 Mon Sep 17 00:00:00 2001 From: Tim Allen Date: Thu, 8 Jun 2023 21:40:33 +1000 Subject: [PATCH] nall: Add needed #include Taken from ares commit 6a7898396a14eef257e63cd002fb26ffbf6e2581 Apparently this is needed by GCC 13. --- nall/arithmetic.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nall/arithmetic.hpp b/nall/arithmetic.hpp index 388370f1..85a383c4 100644 --- a/nall/arithmetic.hpp +++ b/nall/arithmetic.hpp @@ -3,6 +3,8 @@ //multi-precision arithmetic //warning: each size is quadratically more expensive than the size before it! +#include + #include #include #include