From: Wolfgang Bangerth Date: Wed, 1 Jun 2005 14:59:00 +0000 (+0000) Subject: Obvious workaround for gcc2.95 compiler problem. X-Git-Tag: v8.0.0~13746 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=495332229d2f577925efae6b8c591a2643b81449;p=dealii.git Obvious workaround for gcc2.95 compiler problem. git-svn-id: https://svn.dealii.org/trunk@10810 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/numerics/time_dependent.cc b/deal.II/deal.II/source/numerics/time_dependent.cc index 2c33d0c18c..551d6242c3 100644 --- a/deal.II/deal.II/source/numerics/time_dependent.cc +++ b/deal.II/deal.II/source/numerics/time_dependent.cc @@ -137,14 +137,14 @@ void TimeDependent::delete_timestep (const unsigned int position) if (position != 0) timesteps[position-1]->set_next_timestep ((position()); // same for "previous" pointer of next // time step if (positionset_previous_timestep ((position!=0) ? timesteps[position-1] : - 0); + /*null*/SmartPointer()); }