From: Wolfgang Bangerth Date: Fri, 31 Jan 2014 19:44:13 +0000 (+0000) Subject: Make all instances of a template a friend function, in hopes to make X-Git-Tag: v8.2.0-rc1~922 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=635df5c8ed19823cb624991f720c3be70def4175;p=dealii.git Make all instances of a template a friend function, in hopes to make MS VC++ happy. git-svn-id: https://svn.dealii.org/trunk@32360 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/matrix_block.h b/deal.II/include/deal.II/lac/matrix_block.h index f6542c8bcf..02938f4618 100644 --- a/deal.II/include/deal.II/lac/matrix_block.h +++ b/deal.II/include/deal.II/lac/matrix_block.h @@ -1,7 +1,7 @@ // --------------------------------------------------------------------- // $Id$ // -// Copyright (C) 2007 - 2013 by the deal.II authors +// Copyright (C) 2007 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -388,7 +388,8 @@ private: */ BlockIndices column_indices; - friend void internal::reinit<>(MatrixBlock &, const BlockSparsityPattern &); + template + friend void internal::reinit(MatrixBlock &, const BlockSparsityPattern &); };