From b195a7de88bc8909125af64c5906c6bcbcdfe04f Mon Sep 17 00:00:00 2001 From: Tobias Leibner <tobias.leibner@uni-muenster.de> Date: Fri, 22 Jan 2016 10:35:13 +0100 Subject: [PATCH] [test.functions] change typedef to fix compile error --- dune/xt/functions/test/functions.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dune/xt/functions/test/functions.cc b/dune/xt/functions/test/functions.cc index f9ae6d6b6..8a4a79bc4 100644 --- a/dune/xt/functions/test/functions.cc +++ b/dune/xt/functions/test/functions.cc @@ -30,15 +30,15 @@ using namespace Dune::XT; struct FunctionsTest : public FunctionTest<TESTFUNCTIONTYPE> { typedef FunctionsProvider<EntityType, DomainFieldType, dimDomain, RangeFieldType, dimRange, dimRangeCols> - FunctionsProvider; - typedef typename FunctionsProvider::InterfaceType InterfaceType; + FunctionsProviderType; + typedef typename FunctionsProviderType::InterfaceType InterfaceType; virtual void check() const { - for (const auto& type : FunctionsProvider::available()) { - const Common::Configuration config = FunctionsProvider::default_config(type); + for (const auto& type : FunctionsProviderType::available()) { + const Common::Configuration config = FunctionsProviderType::default_config(type); try { - const std::unique_ptr<InterfaceType> function = FunctionsProvider::create(type, config); + const std::unique_ptr<InterfaceType> function = FunctionsProviderType::create(type, config); } catch (Exceptions::spe10_data_file_missing&) { } } -- GitLab