From c26d2e96736e02af91ff6da6ae91f268774907e8 Mon Sep 17 00:00:00 2001 From: Andreas Rechbeger Date: Wed, 28 Sep 2022 13:25:59 +0200 Subject: [PATCH] added missing includes --- Cell.h | 1 + Circuit.h | 1 + 2 files changed, 2 insertions(+) diff --git a/Cell.h b/Cell.h index 6767747..be6cae5 100644 --- a/Cell.h +++ b/Cell.h @@ -3,6 +3,7 @@ #include #include +#include #include "cell_types.h" #include diff --git a/Circuit.h b/Circuit.h index 91b2fda..ccf901c 100644 --- a/Circuit.h +++ b/Circuit.h @@ -9,6 +9,7 @@ #include #include #include +#include #include "Cell.h"