diff options
| author | Angel Garcia Gomez <angelgarcia@google.com> | 2015-10-20 12:53:50 +0000 |
|---|---|---|
| committer | Angel Garcia Gomez <angelgarcia@google.com> | 2015-10-20 12:53:50 +0000 |
| commit | ea61047c6fb720d3ad161404a9df3233d7b8c272 (patch) | |
| tree | c53b00f33c82b8beabb082e87f24f8e4d2c2ce63 /compiler-rt/lib/msan/msan_allocator.h | |
| parent | b5250d3448428b33ae52b8ee574993a2f0f03352 (diff) | |
| download | bcm5719-llvm-ea61047c6fb720d3ad161404a9df3233d7b8c272.tar.gz bcm5719-llvm-ea61047c6fb720d3ad161404a9df3233d7b8c272.zip | |
Apply modernize-use-default to compiler-rt.
Summary: Replace empty bodies of default constructors and destructors with '= default'.
Reviewers: klimek, bkramer
Subscribers: alexfh, cfe-commits
Differential Revision: http://reviews.llvm.org/D13892
llvm-svn: 250823
Diffstat (limited to 'compiler-rt/lib/msan/msan_allocator.h')
| -rw-r--r-- | compiler-rt/lib/msan/msan_allocator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/msan/msan_allocator.h b/compiler-rt/lib/msan/msan_allocator.h index 407942e54c1..a9a27e10574 100644 --- a/compiler-rt/lib/msan/msan_allocator.h +++ b/compiler-rt/lib/msan/msan_allocator.h @@ -26,7 +26,7 @@ struct MsanThreadLocalMallocStorage { private: // These objects are allocated via mmap() and are zero-initialized. - MsanThreadLocalMallocStorage() {} + MsanThreadLocalMallocStorage() = default; }; } // namespace __msan |

