From 346cd16d76e0be11b26c7a297390cf9c7ae8d4ba Mon Sep 17 00:00:00 2001 From: bangerth Date: Wed, 13 Feb 2013 13:52:10 +0000 Subject: [PATCH] Avoid deprecated function. git-svn-id: https://svn.dealii.org/trunk@28362 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/numerics/data_out.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/source/numerics/data_out.cc b/deal.II/source/numerics/data_out.cc index 5c35566e7e..470210067f 100644 --- a/deal.II/source/numerics/data_out.cc +++ b/deal.II/source/numerics/data_out.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -405,7 +405,7 @@ namespace internal get_function_hessians (const FEValuesBase &fe_patch_values, std::vector > > &patch_hessians_system) const { - fe_patch_values.get_function_2nd_derivatives (*vector, patch_hessians_system); + fe_patch_values.get_function_hessians (*vector, patch_hessians_system); } @@ -416,7 +416,7 @@ namespace internal get_function_hessians (const FEValuesBase &fe_patch_values, std::vector > &patch_hessians) const { - fe_patch_values.get_function_2nd_derivatives (*vector, patch_hessians); + fe_patch_values.get_function_hessians (*vector, patch_hessians); } -- 2.39.5