From: wolf Date: Wed, 12 Jun 2002 12:48:19 +0000 (+0000) Subject: pgcc4 rightfully complains that an instantiation requires a definition. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9242166e4e2ec143b759a6cc0ff70fc5d209b64;p=dealii-svn.git pgcc4 rightfully complains that an instantiation requires a definition. git-svn-id: https://svn.dealii.org/trunk@6076 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index 45c107a64b..de91f23d0f 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -1603,7 +1603,7 @@ dnl /* ----------------------------------------------- */ dnl struct X dnl { dnl template -dnl X operator = (T2 &); +dnl X operator = (T2 &){}; dnl }; dnl dnl template X X::operator= (float &); @@ -1627,7 +1627,7 @@ AC_DEFUN(DEAL_II_CHECK_MEMBER_OP_TEMPLATE_INST, dnl struct X { template - X operator = (T2 &); + X operator = (T2 &){}; }; template X X::operator= (float &);