From cabcfdb059304ae686168d1f83ef1a5f2851149b Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Mon, 9 Sep 2013 21:30:09 +0000 Subject: [PATCH] avoid deprecated p4est enum git-svn-id: https://svn.dealii.org/trunk@30661 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/distributed/tria.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/source/distributed/tria.cc b/deal.II/source/distributed/tria.cc index cae3321758..ce4cbc6e97 100644 --- a/deal.II/source/distributed/tria.cc +++ b/deal.II/source/distributed/tria.cc @@ -2518,10 +2518,10 @@ namespace parallel (dim == 2 ? typename dealii::internal::p4est::types:: - balance_type(P4EST_BALANCE_CORNER) + balance_type(P4EST_CONNECT_CORNER) : typename dealii::internal::p4est::types:: - balance_type(P8EST_BALANCE_CORNER))); + balance_type(P8EST_CONNECT_CORNER))); Assert (parallel_ghost, ExcInternalError()); @@ -2897,10 +2897,10 @@ namespace parallel (dim == 2 ? typename dealii::internal::p4est::types:: - balance_type(P4EST_BALANCE_FULL) + balance_type(P4EST_CONNECT_FULL) : typename dealii::internal::p4est::types:: - balance_type(P8EST_BALANCE_FULL)), + balance_type(P8EST_CONNECT_FULL)), /*init_callback=*/NULL); -- 2.39.5