From: Martin Kronbichler Date: Thu, 3 Apr 2014 05:49:08 +0000 (+0000) Subject: Fully qualify namespace to make clang happy X-Git-Tag: v8.2.0-rc1~659 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2d90b7e1d00fb46796406a69a46cdb16ae803d6;p=dealii.git Fully qualify namespace to make clang happy git-svn-id: https://svn.dealii.org/trunk@32709 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/distributed/tria.cc b/deal.II/source/distributed/tria.cc index 770dc964bb..9c267cff7e 100644 --- a/deal.II/source/distributed/tria.cc +++ b/deal.II/source/distributed/tria.cc @@ -3556,15 +3556,15 @@ namespace parallel switch (dim) { case 2: - p4est_iterate (reinterpret_cast::forest*>(this->parallel_forest), - reinterpret_cast::ghost*>(this->parallel_ghost), + p4est_iterate (reinterpret_cast::forest*>(this->parallel_forest), + reinterpret_cast::ghost*>(this->parallel_ghost), static_cast(&fg), NULL, find_ghosts_face<2,spacedim>, find_ghosts_corner<2,spacedim>); break; case 3: - p8est_iterate (reinterpret_cast::forest*>(this->parallel_forest), - reinterpret_cast::ghost*>(this->parallel_ghost), + p8est_iterate (reinterpret_cast::forest*>(this->parallel_forest), + reinterpret_cast::ghost*>(this->parallel_ghost), static_cast(&fg), NULL, find_ghosts_face<3,spacedim>, find_ghosts_edge<3,spacedim>, find_ghosts_corner<3,spacedim>); break;