From 471c0598f46de5be93aac10bcb42c381c8394ca9 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Tue, 8 Sep 2015 11:56:58 -0500 Subject: [PATCH] Bugfix: Avoid C++11 only features --- include/deal.II/base/function.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.5