diff options
author | Rui Ueyama <ruiu@google.com> | 2016-03-02 01:49:27 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-03-02 01:49:27 +0000 |
commit | 52968b58f5175dfb9facd6ca92edd4d709af2d05 (patch) | |
tree | bc8af1ddb0ded56f6d8eced4e3dfcbd3dc3af6f1 /lld/lib/Core/LinkingContext.cpp | |
parent | 7d0a77b9790364ed1c62ca4309ffa3f1a383de39 (diff) | |
download | bcm5719-llvm-52968b58f5175dfb9facd6ca92edd4d709af2d05.tar.gz bcm5719-llvm-52968b58f5175dfb9facd6ca92edd4d709af2d05.zip |
Use C++11 initializers for data members.
llvm-svn: 262447
Diffstat (limited to 'lld/lib/Core/LinkingContext.cpp')
-rw-r--r-- | lld/lib/Core/LinkingContext.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lld/lib/Core/LinkingContext.cpp b/lld/lib/Core/LinkingContext.cpp index e3027fcddf9..1671c57bea8 100644 --- a/lld/lib/Core/LinkingContext.cpp +++ b/lld/lib/Core/LinkingContext.cpp @@ -15,13 +15,7 @@ namespace lld { -LinkingContext::LinkingContext() - : _deadStrip(false), _globalsAreDeadStripRoots(false), - _searchArchivesToOverrideTentativeDefinitions(false), - _searchSharedLibrariesToOverrideTentativeDefinitions(false), - _printRemainingUndefines(true), _allowRemainingUndefines(false), - _logInputFiles(false), _allowShlibUndefines(true), - _nextOrdinal(0) {} +LinkingContext::LinkingContext() {} LinkingContext::~LinkingContext() {} |