From 5a36c3685e51cecb43f139d4e7659c38d2fbd0d8 Mon Sep 17 00:00:00 2001 From: Steven Falco Date: Fri, 20 Jan 2023 21:13:34 +0000 Subject: [PATCH] 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. --- pcb_calculator/eserie.h | 1 + 1 file changed, 1 insertion(+) diff --git a/pcb_calculator/eserie.h b/pcb_calculator/eserie.h index 6cd6c84d6d..7f65dca7dd 100644 --- a/pcb_calculator/eserie.h +++ b/pcb_calculator/eserie.h @@ -18,6 +18,7 @@ * with this program. If not, see . */ +#include #include #include #include