fix wrong friend declaration

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@731 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-10-17 09:14:27 +00:00
parent d19b1df7f4
commit 56c73cd3bc

View file

@ -1116,7 +1116,7 @@ namespace Loki
template <class> class CNP1 template <class> class CNP1
> >
friend void Release(SmartPtr<T1, OP1, CP1, KP1, SP1, CNP1>& sp, friend void Release(SmartPtr<T1, OP1, CP1, KP1, SP1, CNP1>& sp,
typename SP1<T>::StoredType& p); typename SP1<T1>::StoredType& p);
template template
< <
@ -1128,7 +1128,7 @@ namespace Loki
template <class> class CNP1 template <class> class CNP1
> >
friend void Reset(SmartPtr<T1, OP1, CP1, KP1, SP1, CNP1>& sp, friend void Reset(SmartPtr<T1, OP1, CP1, KP1, SP1, CNP1>& sp,
typename SP1<T>::StoredType p); typename SP1<T1>::StoredType p);
@ -1617,6 +1617,9 @@ namespace std
// $Log$ // $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 // Revision 1.35 2006/10/16 16:34:48 syntheticpp
// remove C&P error // remove C&P error
// //