Wei Dai wrote:
> Is anyone else seeing this? I just downloaded 5.5.1 from both cryptopp.com 
> and sourceforge, and simple_ptr in smartptr.h is correct at both locations.
> 

Nope. I just downloaded and verified 5.5.1 from both as well. I get the 
expected:


template <class T> class simple_ptr
{
public:
        simple_ptr() : m_p(NULL) {}
        ~simple_ptr() {delete m_p;}
        T *m_p;
};


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to [EMAIL PROTECTED]
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
-~----------~----~----~----~------~----~------~--~---

Reply via email to