summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNikita Baryshnikov <nib952051@gmail.com>2015-05-26 23:31:45 +0300
committerhjk <hjk@theqtcompany.com>2015-05-27 10:49:12 +0000
commitb46cf9aaf5f1a9b2f02eec78cce161b3052ff578 (patch)
tree6df03de5b6f54115552601b7bc180c3ab3f73ad8 /doc
parentcf1c8a06aa1f040645b8366c704487f366b27150 (diff)
downloadqt-creator-b46cf9aaf5f1a9b2f02eec78cce161b3052ff578.tar.gz
Coding style: update advice
to do not use unique_ptr instead of auto_ptr which was deprecated Change-Id: If6e5bd25c62184a5d34c0cdedf0206138e32bf28 Reviewed-by: hjk <hjk@theqtcompany.com> Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/coding-style.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/coding-style.qdoc b/doc/api/coding-style.qdoc
index e3e2c6db22..8b26dcabc9 100644
--- a/doc/api/coding-style.qdoc
+++ b/doc/api/coding-style.qdoc
@@ -1239,7 +1239,7 @@
int value() const;
QScopedPointer<BarPrivate> d;
- //std::auto_ptr<BarPrivate> d;
+ //std::unique_ptr<BarPrivate> d;
};
############### bar.cpp