From 4a03c62dd37ed54a2f1b0208d4bd10df0e354e43 Mon Sep 17 00:00:00 2001 From: Tim Lander <5424257+VirtualTim@users.noreply.github.com> Date: Sat, 31 Aug 2024 08:55:29 +0800 Subject: [PATCH] Fix compilation failure with gcc >= 13 (#2702) For testing - https://godbolt.org/z/6WWh3zs9G Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> --- math/extended_euclid_algorithm.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/math/extended_euclid_algorithm.cpp b/math/extended_euclid_algorithm.cpp index 9fdc9692e..cc2eacac8 100644 --- a/math/extended_euclid_algorithm.cpp +++ b/math/extended_euclid_algorithm.cpp @@ -11,6 +11,7 @@ */ #include // for swap function #include +#include /** * function to update the coefficients per iteration