From 9d21eb919ade95f9df0371d81b47390b6239d456 Mon Sep 17 00:00:00 2001
From: Bruno Turcksin <bruno.turcksin@gmail.com>
Date: Wed, 5 Mar 2014 21:03:36 +0000
Subject: [PATCH] Second attempt to suppress clang warning in time_stepping.h

git-svn-id: https://svn.dealii.org/trunk@32625 0785d39b-7218-0410-832d-ea1e28bc413d
---
 deal.II/include/deal.II/base/time_stepping.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/deal.II/include/deal.II/base/time_stepping.h b/deal.II/include/deal.II/base/time_stepping.h
index c339fe2859..e3a7590113 100644
--- a/deal.II/include/deal.II/base/time_stepping.h
+++ b/deal.II/include/deal.II/base/time_stepping.h
@@ -191,6 +191,8 @@ namespace TimeStepping
   class ExplicitRungeKutta : public RungeKutta<VECTOR>
   {
   public:
+    using RungeKutta<VECTOR>::evolve_one_time_step;
+
     /**
      * Default constructor. initialize(runge_kutta_method) needs to be called
      * before the object can be used.
@@ -277,6 +279,8 @@ namespace TimeStepping
   class ImplicitRungeKutta : public RungeKutta<VECTOR>
   {
   public:
+    using RungeKutta<VECTOR>::evolve_one_time_step;
+
     /**
      * Default constructor. initialize(runge_kutta_method) and
      * set_newton_solver_parameters(unsigned int,double)
@@ -400,6 +404,8 @@ namespace TimeStepping
   class EmbeddedExplicitRungeKutta : public RungeKutta<VECTOR>
   {
   public:
+    using RungeKutta<VECTOR>::evolve_one_time_step;
+
     /**
      * Default constructor. initialize(runge_kutta_method) and
      * set_time_adaptation_parameters(double, double, double, double, double, double)
-- 
2.39.5