From: Wolfgang Bangerth Date: Wed, 6 Jul 2016 20:45:18 +0000 (-0500) Subject: Avoid C++11 initialization of member variables. X-Git-Tag: v8.5.0-rc1~923^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2755%2Fhead;p=dealii.git Avoid C++11 initialization of member variables. --- diff --git a/tests/fe/mapping_q_manifold_02.cc b/tests/fe/mapping_q_manifold_02.cc index 52ca3acf7f..8473ef52e4 100644 --- a/tests/fe/mapping_q_manifold_02.cc +++ b/tests/fe/mapping_q_manifold_02.cc @@ -70,25 +70,34 @@ template class PushForward : public Function { public: - PushForward () : Function(dim, 0.) {} //,component(component) {} + PushForward () + : + Function(dim, 0.), + h (0.028), + x_max (4.5*h), + y_max (2.036*h), + z_max (4.5*h), + y_FoR (h) + {} virtual ~PushForward() {}; virtual double value (const Point &p,const unsigned int component = 0) const; private: - const double h = 0.028; + const double h; // data from initial block - const double x_max = 4.5*h;//9.0*h; - const double y_max = 2.036*h; - const double z_max = 4.5*h; + const double x_max; + const double y_max; + const double z_max; - const double y_FoR = h; + const double y_FoR; }; + template double PushForward::value(const Point &p,const unsigned int component) const { @@ -119,19 +128,28 @@ template class PullBack : public Function { public: - PullBack () : Function(dim, 0.) {} //,component(component) {} + PullBack () + : + Function(dim, 0.), + h (0.028), + x_max (4.5*h), + y_max (2.036*h), + z_max (4.5*h), + y_FoR (h) + {} virtual ~PullBack() {}; virtual double value (const Point &p,const unsigned int component = 0) const; private: - const double h = 0.028; - const double x_max = 4.5*h;//9.0*h; - const double y_max = 2.036*h; - const double z_max = 4.5*h; + const double h; + + const double x_max; + const double y_max; + const double z_max; - const double y_FoR = h; + const double y_FoR; }; template