[cfe-commits] r165363 - /cfe/trunk/www/analyzer/potential_checkers.html
Dmitri Gribenko
gribozavr at gmail.com
Sat Oct 6 09:59:15 PDT 2012
Author: gribozavr
Date: Sat Oct 6 11:59:15 2012
New Revision: 165363
URL: http://llvm.org/viewvc/llvm-project?rev=165363&view=rev
Log:
List of potential checkers: more C++11 details for the smart pointer checker.
Modified:
cfe/trunk/www/analyzer/potential_checkers.html
Modified: cfe/trunk/www/analyzer/potential_checkers.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/analyzer/potential_checkers.html?rev=165363&r1=165362&r2=165363&view=diff
==============================================================================
--- cfe/trunk/www/analyzer/potential_checkers.html (original)
+++ cfe/trunk/www/analyzer/potential_checkers.html Sat Oct 6 11:59:15 2012
@@ -266,10 +266,12 @@
<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>
More information about the cfe-commits
mailing list