diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-10-06 16:59:15 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-10-06 16:59:15 +0000 |
commit | 9074fbe1890717e575d833fc4f131ee018ac4028 (patch) | |
tree | 34ed24bfd96933da2d1c6a0ac01547ecb3d5f906 /www | |
parent | d190057934331390ff67ebf51d66186dd5e392f0 (diff) |
List of potential checkers: more C++11 details for the smart pointer checker.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165363 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www')
-rw-r--r-- | www/analyzer/potential_checkers.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/www/analyzer/potential_checkers.html b/www/analyzer/potential_checkers.html index 3da3c66f52..85155c095c 100644 --- a/www/analyzer/potential_checkers.html +++ b/www/analyzer/potential_checkers.html @@ -266,10 +266,12 @@ void f() throw(int) { <col class="namedescr"><col class="example"><col class="progress"> <thead><tr><td>Name, Description</td><td>Example</td><td>Progress</td></tr></thead> -<tr><td><span class="name">smartptr.AutoPtrInit<br> -(C++03)</span><br><br> -auto_ptr should store a pointer to an object obtained via new as allocated -memory will be cleaned using delete +<tr><td><span class="name">smartptr.SmartPtrInit<br> +(C++)</span><br><br> +C++03: auto_ptr should store a pointer to an object obtained via new as allocated +memory will be cleaned using delete<br> +C++11: unique_ptr and shared_ptr allow +to specify a custom deleter to handle the new[]/delete[] case correctly </td><td><pre> #include <stdlib.h> #include <memory> |