From: Wolfgang Bangerth Date: Tue, 30 Dec 2014 01:53:08 +0000 (-0600) Subject: Remove deprecated function TimeDependent::end_sweep with an argument. X-Git-Tag: v8.3.0-rc1~566^2~25 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a0457044853406bdbfd091204a3f9bbd73af90c;p=dealii.git Remove deprecated function TimeDependent::end_sweep with an argument. --- diff --git a/include/deal.II/numerics/time_dependent.h b/include/deal.II/numerics/time_dependent.h index 8a6311f8fc..d1c96571e5 100644 --- a/include/deal.II/numerics/time_dependent.h +++ b/include/deal.II/numerics/time_dependent.h @@ -570,12 +570,6 @@ public: */ virtual void end_sweep (); - /** - * @deprecated Use the function without an argument. @arg n_threads This - * argument is ignored. - */ - virtual void end_sweep (const unsigned int n_threads) DEAL_II_DEPRECATED; - /** * Determine an estimate for the memory consumption (in bytes) of this * object. diff --git a/source/numerics/time_dependent.cc b/source/numerics/time_dependent.cc index f42fa8a157..80a9b29a5c 100644 --- a/source/numerics/time_dependent.cc +++ b/source/numerics/time_dependent.cc @@ -205,12 +205,6 @@ void TimeDependent::start_sweep (const unsigned int s) -void TimeDependent::end_sweep (const unsigned int) -{ - end_sweep (); -} - - void TimeDependent::end_sweep () { void (TimeDependent::*p) (const unsigned int, const unsigned int)