Home
last modified time | relevance | path

Searched refs:SimpleSmartPointer (Results 1 – 1 of 1) sorted by relevance

/netbsd/external/apache2/llvm/dist/clang/docs/analyzer/checkers/
H A Dmismatched_deallocator_example.cpp29 struct SimpleSmartPointer { struct
32 explicit SimpleSmartPointer(T *p = 0) : ptr(p) {} in SimpleSmartPointer() argument
33 ~SimpleSmartPointer() { in ~SimpleSmartPointer() argument
39 SimpleSmartPointer<int> a((int *)malloc(4)); in test()