summaryrefslogtreecommitdiff
path: root/lib/msan
diff options
context:
space:
mode:
authorAngel Garcia Gomez <angelgarcia@google.com>2015-10-20 12:53:50 +0000
committerAngel Garcia Gomez <angelgarcia@google.com>2015-10-20 12:53:50 +0000
commitf44877aefa3ac39e91cde329c881939fe6b59bfe (patch)
treee78b7ba6c42dc3cb79a8dd538666b2715c96d095 /lib/msan
parent33b67568139c619e7e94137d6b90132416ae1b63 (diff)
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 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@250823 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/msan')
-rw-r--r--lib/msan/msan_allocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msan/msan_allocator.h b/lib/msan/msan_allocator.h
index 407942e54..a9a27e105 100644
--- a/lib/msan/msan_allocator.h
+++ b/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