From 56c73cd3bc7b66b0c354cc97aa58e43083854878 Mon Sep 17 00:00:00 2001 From: syntheticpp Date: Tue, 17 Oct 2006 09:14:27 +0000 Subject: [PATCH] fix wrong friend declaration git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@731 7ec92016-0320-0410-acc4-a06ded1c099a --- include/loki/SmartPtr.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/loki/SmartPtr.h b/include/loki/SmartPtr.h index 2e0eceb..7295d18 100644 --- a/include/loki/SmartPtr.h +++ b/include/loki/SmartPtr.h @@ -1116,7 +1116,7 @@ namespace Loki template class CNP1 > friend void Release(SmartPtr& sp, - typename SP1::StoredType& p); + typename SP1::StoredType& p); template < @@ -1128,7 +1128,7 @@ namespace Loki template class CNP1 > friend void Reset(SmartPtr& sp, - typename SP1::StoredType p); + typename SP1::StoredType p); @@ -1617,6 +1617,9 @@ namespace std // $Log$ +// Revision 1.36 2006/10/17 09:14:27 syntheticpp +// fix wrong friend declaration +// // Revision 1.35 2006/10/16 16:34:48 syntheticpp // remove C&P error //