no message

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@92 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
tslettebo 2003-02-03 11:54:05 +00:00
parent cb529b708c
commit 53bce2fe7c

View file

@ -762,13 +762,17 @@ namespace Loki
: spImpl_(new MemFunHandler<Functor, PtrObj, MemFn>(p, memFn))
{}
typedef impl * (std::auto_ptr<impl>::*unspecified_bool_type)() const;
/*
typedef Impl * (std::auto_ptr<Impl>::*unspecified_bool_type)() const;
operator unspecified_bool_type() const
{
return spImpl_.get() ? &std::auto_ptr<impl>::get : 0;
return spImpl_.get() ? &std::auto_ptr<Impl>::get : 0;
}
*/
Functor& operator=(const Functor& rhs)
{
Functor copy(rhs);