r180627 - Documentation: improve description of make_shared transformation, as suggested by David Blaikie
Dmitri Gribenko
gribozavr at gmail.com
Fri Apr 26 13:20:30 PDT 2013
Author: gribozavr
Date: Fri Apr 26 15:20:30 2013
New Revision: 180627
URL: http://llvm.org/viewvc/llvm-project?rev=180627&view=rev
Log:
Documentation: improve description of make_shared transformation, as suggested by David Blaikie
Modified:
cfe/trunk/docs/ClangTools.rst
Modified: cfe/trunk/docs/ClangTools.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ClangTools.rst?rev=180627&r1=180626&r2=180627&view=diff
==============================================================================
--- cfe/trunk/docs/ClangTools.rst (original)
+++ cfe/trunk/docs/ClangTools.rst Fri Apr 26 15:20:30 2013
@@ -124,14 +124,16 @@ Ideas for new Tools
``foo.begin()`` into ``begin(foo)`` and similarly for ``end()``, where
``foo`` is a standard container. We could also detect similar patterns for
arrays.
-* ``make_shared`` / ``make_unique`` conversion. This transformation can be
- incorporated into the ``auto`` transformation. Will convert
+* ``make_shared`` / ``make_unique`` conversion. Part of this transformation
+can be incorporated into the ``auto`` transformation. Will convert
.. code-block:: c++
std::shared_ptr<Foo> sp(new Foo);
std::unique_ptr<Foo> up(new Foo);
+ func(std::shared_ptr<Foo>(new Foo), bar());
+
into:
.. code-block:: c++
@@ -139,6 +141,10 @@ Ideas for new Tools
auto sp = std::make_shared<Foo>();
auto up = std::make_unique<Foo>(); // In C++14 mode.
+ // This also affects correctness. For the cases where bar() throws,
+ // make_shared() is safe and the original code may leak.
+ func(std::make_shared<Foo>(), bar());
+
* ``tr1`` removal tool. Will migrate source code from using TR1 library
features to C++11 library. For example:
More information about the cfe-commits
mailing list