From: Matthias Maier Date: Tue, 8 Sep 2015 16:56:58 +0000 (-0500) Subject: Bugfix: Avoid C++11 only features X-Git-Tag: v8.4.0-rc2~454^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=471c0598f46de5be93aac10bcb42c381c8394ca9;p=dealii.git Bugfix: Avoid C++11 only features --- diff --git a/include/deal.II/base/function.h b/include/deal.II/base/function.h index 2f30365480..4553f3fcdd 100644 --- a/include/deal.II/base/function.h +++ b/include/deal.II/base/function.h @@ -322,7 +322,7 @@ public: * them in values. */ virtual void vector_hessian (const Point &p, - std::vector> &values) const; + std::vector > &values) const; /** * Compute the Hessian of one component at a set of points.