From 29a1dcb6dc1722bc4e3e83ce3a587254a553bd50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Wed, 31 Aug 2016 22:07:46 +0200 Subject: [PATCH] Update opm-flowdiagnostics system probe for API change This commit brings the system probe for module opm-flowdiagnostics up-to-date with recent changes in the public interface of the module's main entry point. Commit OPM/opm-flowdiagnostics@8456e81 removed the nested type Opm::FlowDiagnostics::Toolbox::PoreVolume so we must drop all references to this type. --- cmake/Modules/Findopm-flowdiagnostics.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/Findopm-flowdiagnostics.cmake b/cmake/Modules/Findopm-flowdiagnostics.cmake index 62ef61525..76716ff90 100644 --- a/cmake/Modules/Findopm-flowdiagnostics.cmake +++ b/cmake/Modules/Findopm-flowdiagnostics.cmake @@ -40,7 +40,7 @@ int main() { using FDT = Opm::FlowDiagnostics::Toolbox; - const auto pv = FDT::PoreVolume{ std::vector(10, 0.3) }; + const auto pv = std::vector(10, 0.3); } " # config variables