From 83e7e45f2dd7f4a3efe196df7bd6b87432581b68 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Mon, 2 Jan 2023 08:24:27 +0100 Subject: [PATCH] TabulatedComponent: remove unnecessary include --- examples/co2brinepvt.cpp | 2 +- opm/material/components/TabulatedComponent.hpp | 2 +- tests/test_tabulation.cpp | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/co2brinepvt.cpp b/examples/co2brinepvt.cpp index 8deab5d20..3a572e84c 100644 --- a/examples/co2brinepvt.cpp +++ b/examples/co2brinepvt.cpp @@ -30,7 +30,7 @@ #include #include - +#include template double densityGas(const Co2Pvt& co2Pvt, const double p, const double T, const double Rv) diff --git a/opm/material/components/TabulatedComponent.hpp b/opm/material/components/TabulatedComponent.hpp index e1b9e4cd9..8e96e7084 100644 --- a/opm/material/components/TabulatedComponent.hpp +++ b/opm/material/components/TabulatedComponent.hpp @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include diff --git a/tests/test_tabulation.cpp b/tests/test_tabulation.cpp index 56d4f08cb..26f32cac3 100644 --- a/tests/test_tabulation.cpp +++ b/tests/test_tabulation.cpp @@ -34,6 +34,8 @@ #include #include +#include + extern bool success; bool success;