From 93be2d9073f02a6b3af06ef98e4547e082df5926 Mon Sep 17 00:00:00 2001 From: Alex Lindsay Date: Tue, 5 Dec 2017 13:51:24 -0700 Subject: [PATCH] Make new API non-pure virtual for now (Closes #7842) --- framework/include/multiapps/MultiApp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/include/multiapps/MultiApp.h b/framework/include/multiapps/MultiApp.h index 3ce156e5d1a4..27637c7545c0 100644 --- a/framework/include/multiapps/MultiApp.h +++ b/framework/include/multiapps/MultiApp.h @@ -101,7 +101,7 @@ class MultiApp : public MooseObject, public SetupInterface, public Restartable * which is called either directly from solveStep() for loose coupling cases * or through finishStep() for Picard coupling cases) */ - virtual void incrementTStep() = 0; + virtual void incrementTStep() {} /** * Deprecated method. Use finishStep @@ -118,7 +118,7 @@ class MultiApp : public MooseObject, public SetupInterface, public Restartable * for Picard calculations because for loosely coupled calculations the executioners' endStep and * postStep methods are called from solveStep(). */ - virtual void finishStep() = 0; + virtual void finishStep() {} /** * Save off the state of every Sub App