From: wolf Date: Wed, 1 Jun 2005 14:59:00 +0000 (+0000) Subject: Obvious workaround for gcc2.95 compiler problem. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e08958b49384cfcfca6f131626c77763065155f;p=dealii-svn.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()); }