diff options
author | Nikita Baryshnikov <[email protected]> | 2015-05-26 23:31:45 +0300 |
---|---|---|
committer | hjk <[email protected]> | 2015-05-27 10:49:12 +0000 |
commit | b46cf9aaf5f1a9b2f02eec78cce161b3052ff578 (patch) | |
tree | 6df03de5b6f54115552601b7bc180c3ab3f73ad8 /doc/api | |
parent | cf1c8a06aa1f040645b8366c704487f366b27150 (diff) |
Coding style: update advice
to do not use unique_ptr instead of auto_ptr which was deprecated
Change-Id: If6e5bd25c62184a5d34c0cdedf0206138e32bf28
Reviewed-by: hjk <[email protected]>
Reviewed-by: Eike Ziller <[email protected]>
Reviewed-by: Leena Miettinen <[email protected]>
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/coding-style.qdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/coding-style.qdoc b/doc/api/coding-style.qdoc index e3e2c6db22c..8b26dcabc95 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 |