From: Wolfgang Bangerth Date: Wed, 13 Feb 2013 13:52:10 +0000 (+0000) Subject: Avoid deprecated function. X-Git-Tag: v8.0.0~1325 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=712886dcc6905623a173ee7d7c5309ce2aad815a;p=dealii.git Avoid deprecated function. git-svn-id: https://svn.dealii.org/trunk@28362 0785d39b-7218-0410-832d-ea1e28bc413d --- 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); }