From b8d868545cba1c57313227b60722f4b54a3256ba Mon Sep 17 00:00:00 2001 From: Tim Lander <5424257+VirtualTim@users.noreply.github.com> Date: Fri, 21 Jun 2024 12:43:56 +0800 Subject: [PATCH] Fix compilation failure with gcc >= 13 For testing - https://godbolt.org/z/6WWh3zs9G --- 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 9fdc9692ef1..cc2eacac8e3 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