From f488daea8ded3396959901600ca87a4927bceb33 Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Mon, 18 Jun 2018 18:07:46 +0200 Subject: [PATCH] [io] Remove deprecated function --- dumux/io/vtkoutputmodule.hh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/dumux/io/vtkoutputmodule.hh b/dumux/io/vtkoutputmodule.hh index e1614b2767..17a5620261 100644 --- a/dumux/io/vtkoutputmodule.hh +++ b/dumux/io/vtkoutputmodule.hh @@ -129,15 +129,6 @@ public: //! Do not call these methods after initialization i.e. _not_ within the time loop ////////////////////////////////////////////////////////////////////////////////////////////// - //! Output a scalar volume variable - //! \param name The name of the vtk field - //! \param f A function taking a VolumeVariables object and returning the desired scalar - DUNE_DEPRECATED_MSG("Will be removed after next release. Please use addVolumeVariable(function, name) instead!") - void addSecondaryVariable(const std::string& name, std::function<Scalar(const VolumeVariables&)>&& f) - { - volVarScalarDataInfo_.push_back(VolVarScalarDataInfo{f, name}); - } - //! Output a scalar volume variable //! \param name The name of the vtk field //! \param f A function taking a VolumeVariables object and returning the desired scalar -- GitLab