From: Matthias Maier Date: Wed, 10 Oct 2012 13:22:55 +0000 (+0000) Subject: Fix compile issue with clang++-v3.1 X-Git-Tag: v8.0.0~1966 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e7a2565b86bf0c47012a91c496107f6f1a26285;p=dealii.git Fix compile issue with clang++-v3.1 git-svn-id: https://svn.dealii.org/trunk@27048 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/distributed/grid_refinement.cc b/deal.II/source/distributed/grid_refinement.cc index c56f8007dc..84b5631266 100644 --- a/deal.II/source/distributed/grid_refinement.cc +++ b/deal.II/source/distributed/grid_refinement.cc @@ -170,7 +170,7 @@ namespace } Assert (owned_index == tria.n_locally_owned_active_cells(), ExcInternalError()); - Assert ((active_index == tria.dealii::Triangulation::n_active_cells()), + Assert ((active_index == tria.Triangulation::n_active_cells()), ExcInternalError()); }