summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/use-after-scope-conversion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/TestCases/use-after-scope-conversion.cpp')
-rw-r--r--test/asan/TestCases/use-after-scope-conversion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/asan/TestCases/use-after-scope-conversion.cpp b/test/asan/TestCases/use-after-scope-conversion.cpp
index b3ab50170..4ada3ba5d 100644
--- a/test/asan/TestCases/use-after-scope-conversion.cpp
+++ b/test/asan/TestCases/use-after-scope-conversion.cpp
@@ -15,7 +15,7 @@ struct B {
struct C {
const char *p;
explicit C(const char *c) : p(c) {}
- C(const B &b) : p(&b.p) {} // NOLINT
+ explicit C(const B &b) : p(&b.p) {}
};
struct A {