diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-22 15:19:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-22 15:22:11 +0900 |
commit | bfb6a86ee22664339e8922e55216d12e1a5b2008 (patch) | |
tree | 581faaa72b0d515a3e87c6d315c21efec779b9f4 /kopete/protocols/jabber | |
parent | 1329ec6abbcb7b79cd960e0ca138f16598d5f11f (diff) | |
download | tdenetwork-bfb6a86ee22664339e8922e55216d12e1a5b2008.tar.gz tdenetwork-bfb6a86ee22664339e8922e55216d12e1a5b2008.zip |
Replace auto_ptr
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kopete/protocols/jabber')
-rw-r--r-- | kopete/protocols/jabber/jingle/libjingle/talk/base/scoped_ptr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kopete/protocols/jabber/jingle/libjingle/talk/base/scoped_ptr.h b/kopete/protocols/jabber/jingle/libjingle/talk/base/scoped_ptr.h index 0470ff83..64eba645 100644 --- a/kopete/protocols/jabber/jingle/libjingle/talk/base/scoped_ptr.h +++ b/kopete/protocols/jabber/jingle/libjingle/talk/base/scoped_ptr.h @@ -15,7 +15,7 @@ // scoped_ptr mimics a built-in pointer except that it guarantees deletion // of the object pointed to, either on destruction of the scoped_ptr or via // an explicit reset(). scoped_ptr is a simple solution for simple needs; -// use shared_ptr or std::auto_ptr if your needs are more complex. +// use shared_ptr or std::unique_ptr if your needs are more complex. // scoped_ptr_malloc added in by Google. When one of // these goes out of scope, instead of doing a delete or delete[], it |