diff options
Diffstat (limited to 'test/Analysis/new.cpp')
-rw-r--r-- | test/Analysis/new.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/new.cpp b/test/Analysis/new.cpp index 105a973ccc92..e262aa727e2b 100644 --- a/test/Analysis/new.cpp +++ b/test/Analysis/new.cpp @@ -267,7 +267,7 @@ void testNullDtorDerived() { clang_analyzer_eval(true); // no warn } -//Deleting a non class pointer should not crash/warn +//Deleting a non-class pointer should not crash/warn void test_var_delete() { int *v = new int; delete v; // no crash/warn |