diff options
author | Florian Mayer <fmayer@google.com> | 2021-06-17 11:17:11 +0100 |
---|---|---|
committer | Florian Mayer <fmayer@google.com> | 2021-06-17 11:18:36 +0100 |
commit | b18f30fb2dd157e5fef91d9327fd12b8965e7e0c (patch) | |
tree | 482de95ec08b3b86bc1200a3352c522bf14c0a3d | |
parent | 5355b8c6318c194ff15241b7a3217a51fc1a644b (diff) | |
download | llvm-b18f30fb2dd157e5fef91d9327fd12b8965e7e0c.zip llvm-b18f30fb2dd157e5fef91d9327fd12b8965e7e0c.tar.gz llvm-b18f30fb2dd157e5fef91d9327fd12b8965e7e0c.tar.bz2 |
[NFC] test commit, fix namespace ending comment.
-rw-r--r-- | compiler-rt/lib/hwasan/hwasan_thread_list.cpp | 2 | ||||
-rw-r--r-- | compiler-rt/lib/hwasan/hwasan_thread_list.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/hwasan/hwasan_thread_list.cpp b/compiler-rt/lib/hwasan/hwasan_thread_list.cpp index a31eee8..fa46e65 100644 --- a/compiler-rt/lib/hwasan/hwasan_thread_list.cpp +++ b/compiler-rt/lib/hwasan/hwasan_thread_list.cpp @@ -12,4 +12,4 @@ void InitThreadList(uptr storage, uptr size) { new (thread_list_placeholder) HwasanThreadList(storage, size); } -} // namespace +} // namespace __hwasan diff --git a/compiler-rt/lib/hwasan/hwasan_thread_list.h b/compiler-rt/lib/hwasan/hwasan_thread_list.h index 11c5863..d726fa7 100644 --- a/compiler-rt/lib/hwasan/hwasan_thread_list.h +++ b/compiler-rt/lib/hwasan/hwasan_thread_list.h @@ -200,4 +200,4 @@ class HwasanThreadList { void InitThreadList(uptr storage, uptr size); HwasanThreadList &hwasanThreadList(); -} // namespace +} // namespace __hwasan |