diff options
author | Jonas Toth <jonas.toth@gmail.com> | 2017-10-04 16:49:20 +0000 |
---|---|---|
committer | Jonas Toth <jonas.toth@gmail.com> | 2017-10-04 16:49:20 +0000 |
commit | 5a09996ff70ee0cd533c8d401f3924aee662551f (patch) | |
tree | 1eda979223a25702d7602e1af6d760c58a150232 /clang-tools-extra/test/clang-tidy/cppcoreguidelines-owning-memory.cpp | |
parent | 45ff83ce1eb45e786c02c9fb6a5d6b87cbdb3842 (diff) | |
download | bcm5719-llvm-5a09996ff70ee0cd533c8d401f3924aee662551f.tar.gz bcm5719-llvm-5a09996ff70ee0cd533c8d401f3924aee662551f.zip |
[clang-tidy] Emit note for variable declaration that are later deleted
This patch introduces a note for variable declaration that are later deleted.
Adds FIXME notes for possible automatic type-rewriting positions as well.
Reviewed by aaron.ballman
Differential: https://reviews.llvm.org/D38411
llvm-svn: 314913
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/cppcoreguidelines-owning-memory.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/cppcoreguidelines-owning-memory.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clang-tidy/cppcoreguidelines-owning-memory.cpp b/clang-tools-extra/test/clang-tidy/cppcoreguidelines-owning-memory.cpp index 789181d88b5..967c086257c 100644 --- a/clang-tools-extra/test/clang-tidy/cppcoreguidelines-owning-memory.cpp +++ b/clang-tools-extra/test/clang-tidy/cppcoreguidelines-owning-memory.cpp @@ -142,11 +142,13 @@ void test_deletion() { // CHECK-MESSAGES: [[@LINE-1]]:3: warning: initializing non-owner 'int *' with a newly created 'gsl::owner<>' delete unowned_int1; // BAD, since no owner // CHECK-MESSAGES: [[@LINE-1]]:3: warning: deleting a pointer through a type that is not marked 'gsl::owner<>'; consider using a smart pointer instead + // CHECK-MESSAGES: [[@LINE-4]]:3: note: variable declared here int *unowned_int2 = new int[42]; // BAD, since new creates and owner // CHECK-MESSAGES: [[@LINE-1]]:3: warning: initializing non-owner 'int *' with a newly created 'gsl::owner<>' delete[] unowned_int2; // BAD since no owner // CHECK-MESSAGES: [[@LINE-1]]:3: warning: deleting a pointer through a type that is not marked 'gsl::owner<>'; consider using a smart pointer instead + // CHECK-MESSAGES: [[@LINE-4]]:3: note: variable declared here delete new int(42); // Technically ok, but stupid delete[] new int[42]; // Technically ok, but stupid |