diff options
author | Michele Calgaro <[email protected]> | 2024-01-22 15:19:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-23 09:51:43 +0900 |
commit | 5d85a610bd02473cbcb1fe25f02c6590b31b6be0 (patch) | |
tree | c32ca7af5b6ccbf66602cb1cf42cd182dad9b999 /kopete/protocols | |
parent | 40393e30bb743346b6b40bf130da35419c12ebdc (diff) | |
download | tdenetwork-5d85a610bd02473cbcb1fe25f02c6590b31b6be0.tar.gz tdenetwork-5d85a610bd02473cbcb1fe25f02c6590b31b6be0.zip |
Replace auto_ptr
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit bfb6a86ee22664339e8922e55216d12e1a5b2008)
Diffstat (limited to 'kopete/protocols')
-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 |