From 36782883307e6d5881a4d3535d2f613e0f416a8a Mon Sep 17 00:00:00 2001 From: Tristan Youngs Date: Thu, 9 Jul 2026 10:02:47 +0100 Subject: [PATCH] Some includes. --- src/classes/atomType.cpp | 2 +- src/classes/shortRangeFunctions.cpp | 1 + src/math/ft.cpp | 1 + tests/math/function1D.cpp | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/classes/atomType.cpp b/src/classes/atomType.cpp index f9c5383ea9..69ef25584f 100644 --- a/src/classes/atomType.cpp +++ b/src/classes/atomType.cpp @@ -4,7 +4,7 @@ #include "classes/atomType.h" #include "data/elements.h" #include "templates/algorithms.h" -#include +#include AtomType::AtomType(Elements::Element Z) : Z_(Z), interactionPotential_(ShortRangeFunctions::Form::Undefined) {} AtomType::AtomType(std::string_view name) : name_(name), interactionPotential_(ShortRangeFunctions::Form::Undefined) {} diff --git a/src/classes/shortRangeFunctions.cpp b/src/classes/shortRangeFunctions.cpp index 46340a346e..ab1cc3c9b1 100644 --- a/src/classes/shortRangeFunctions.cpp +++ b/src/classes/shortRangeFunctions.cpp @@ -2,6 +2,7 @@ // Copyright (c) 2026 Team Dissolve and contributors #include "classes/shortRangeFunctions.h" +#include // Return enum options for ShortRangeType EnumOptions ShortRangeFunctions::forms() diff --git a/src/math/ft.cpp b/src/math/ft.cpp index e31e8ab100..23bf50478b 100644 --- a/src/math/ft.cpp +++ b/src/math/ft.cpp @@ -6,6 +6,7 @@ #include "templates/algorithms.h" #include "templates/parallelDefs.h" #include +#include #include #include #include diff --git a/tests/math/function1D.cpp b/tests/math/function1D.cpp index a00dd042af..0ff9b4aa94 100644 --- a/tests/math/function1D.cpp +++ b/tests/math/function1D.cpp @@ -4,6 +4,7 @@ #include "math/function1D.h" #include "math/data1D.h" #include "templates/algorithms.h" +#include #include #include