From: Wolfgang Bangerth Date: Fri, 19 Apr 2002 10:26:34 +0000 (+0000) Subject: Explicitly name template args for instantiation, to make Intel ICC happier. X-Git-Tag: v8.0.0~18160 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61e01771a2dbb66a66f07cd08dc24938c2202517;p=dealii.git Explicitly name template args for instantiation, to make Intel ICC happier. git-svn-id: https://svn.dealii.org/trunk@5688 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/table_handler.cc b/deal.II/base/source/table_handler.cc index 4fec9b5a4d..4009e03d17 100644 --- a/deal.II/base/source/table_handler.cc +++ b/deal.II/base/source/table_handler.cc @@ -500,17 +500,17 @@ template class TableEntry; template -void TableHandler::add_value<> (const std::string &, - const double); +void TableHandler::add_value (const std::string &, + const double); template -void TableHandler::add_value<> (const std::string &, - const int); +void TableHandler::add_value (const std::string &, + const int); template -void TableHandler::add_value<> (const std::string &, - const unsigned int); +void TableHandler::add_value (const std::string &, + const unsigned int); template -void TableHandler::add_value<> (const std::string &, - const std::string); +void TableHandler::add_value (const std::string &, + const std::string);