From: Guido Kanschat Date: Tue, 15 Mar 2005 21:06:15 +0000 (+0000) Subject: The namespace qualified ::Table<2,T> needed by the Sun compiler offended gcc 3.3.3 X-Git-Tag: v8.0.0~14373 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd792d486d0925dcdca9ed54d3804fd138bf586e;p=dealii.git The namespace qualified ::Table<2,T> needed by the Sun compiler offended gcc 3.3.3 git-svn-id: https://svn.dealii.org/trunk@10163 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/table.h b/deal.II/base/include/base/table.h index 3f2c4d4a45..8dd9815fec 100644 --- a/deal.II/base/include/base/table.h +++ b/deal.II/base/include/base/table.h @@ -664,7 +664,7 @@ namespace internal template friend class Accessor; # ifndef DEAL_II_TEMPL_SPEC_FRIEND_BUG - friend class ::Table<2,T>; + friend class Table<2,T>; friend class Accessor; # endif #else