From c1f052eaf9f120e180bc6147ad3d2239f7828989 Mon Sep 17 00:00:00 2001 From: Tobias Pisani Date: Mon, 25 Aug 2025 23:19:18 +0200 Subject: [PATCH] Fix build on GCC Adds include to two source files where libstdc++ does not indirectly include them --- OndselSolver/FunctionXY.cpp | 1 + OndselSolver/Power.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/OndselSolver/FunctionXY.cpp b/OndselSolver/FunctionXY.cpp index c001aaf..3c6865e 100644 --- a/OndselSolver/FunctionXY.cpp +++ b/OndselSolver/FunctionXY.cpp @@ -6,6 +6,7 @@ * See LICENSE file for details about copyright. * ***************************************************************************/ +#include #include "FunctionXY.h" #include "Sum.h" #include "Constant.h" diff --git a/OndselSolver/Power.cpp b/OndselSolver/Power.cpp index bd1d774..5b815d7 100644 --- a/OndselSolver/Power.cpp +++ b/OndselSolver/Power.cpp @@ -6,6 +6,7 @@ * See LICENSE file for details about copyright. * ***************************************************************************/ +#include #include "Power.h" #include "Constant.h" #include "Ln.h"