diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 19:19:15 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 19:19:15 +0000 |
commit | d93e1dfac8711cfed1a9d9cd1876a788b83945cd (patch) | |
tree | 5896fa6c02a262a6148b215487e545d937de58b7 /lib/Core/File.cpp | |
parent | 8d43286d630f9224de07809ea253e83ebb9cdee6 (diff) |
Notes
Diffstat (limited to 'lib/Core/File.cpp')
-rw-r--r-- | lib/Core/File.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Core/File.cpp b/lib/Core/File.cpp index b84132bfecd5..30ded091a92a 100644 --- a/lib/Core/File.cpp +++ b/lib/Core/File.cpp @@ -8,12 +8,11 @@ //===----------------------------------------------------------------------===// #include "lld/Core/File.h" -#include "lld/Core/LLVM.h" #include <mutex> namespace lld { -File::~File() { } +File::~File() = default; File::AtomVector<DefinedAtom> File::_noDefinedAtoms; File::AtomVector<UndefinedAtom> File::_noUndefinedAtoms; @@ -27,4 +26,4 @@ std::error_code File::parse() { return _lastError.getValue(); } -} // namespace lld +} // end namespace lld |