From cc900a310255adc74a9297fd2268416140872b00 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sun, 7 Aug 2022 14:12:41 -0400 Subject: [PATCH] [Fortran] Fix compilation warnings from Clang --- src/fortran/fct.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/fortran/fct.cpp b/src/fortran/fct.cpp index f80ea76473b..4bd6b17dc60 100644 --- a/src/fortran/fct.cpp +++ b/src/fortran/fct.cpp @@ -30,6 +30,10 @@ typedef Cabinet TransportCabinet; typedef integer status_t; +template<> ThermoCabinet* ThermoCabinet::s_storage; // defined in ct.cpp +template<> KineticsCabinet* KineticsCabinet::s_storage; // defined in ct.cpp +template<> TransportCabinet* TransportCabinet::s_storage; // defined in ct.cpp + namespace { ThermoPhase* _fph(const integer* n)