From: bangerth Date: Tue, 24 Oct 2006 22:20:04 +0000 (+0000) Subject: Qualify class with its namespace, to make icc happier. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24937032e97ed19b08f41b2da5a0ecbcc2609ca0;p=dealii-svn.git Qualify class with its namespace, to make icc happier. git-svn-id: https://svn.dealii.org/trunk@14070 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/table.h b/deal.II/base/include/base/table.h index e298915434..62faa8532e 100644 --- a/deal.II/base/include/base/table.h +++ b/deal.II/base/include/base/table.h @@ -221,11 +221,11 @@ namespace internal // work around bugs in some // compilers #ifndef DEAL_II_NAMESP_TEMPL_FRIEND_BUG - template friend class Table; + template friend class dealii::Table; template friend class Accessor; # ifndef DEAL_II_TEMPL_SPEC_FRIEND_BUG - friend class Table; + friend class dealii::Table; friend class Accessor; # endif #else @@ -376,11 +376,11 @@ namespace internal // work around bugs in some // compilers #ifndef DEAL_II_NAMESP_TEMPL_FRIEND_BUG - template friend class Table; + template friend class dealii::Table; template friend class Accessor; # ifndef DEAL_II_TEMPL_SPEC_FRIEND_BUG - friend class Table<2,T>; + friend class dealii::Table<2,T>; friend class Accessor; # endif #else