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/Writer.cpp | |
parent | 8d43286d630f9224de07809ea253e83ebb9cdee6 (diff) |
Notes
Diffstat (limited to 'lib/Core/Writer.cpp')
-rw-r--r-- | lib/Core/Writer.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/Core/Writer.cpp b/lib/Core/Writer.cpp index 93e6438a28f5..51f95bc5053a 100644 --- a/lib/Core/Writer.cpp +++ b/lib/Core/Writer.cpp @@ -7,13 +7,12 @@ // //===----------------------------------------------------------------------===// -#include "lld/Core/File.h" #include "lld/Core/Writer.h" namespace lld { -Writer::Writer() { -} -Writer::~Writer() { -} +Writer::Writer() = default; + +Writer::~Writer() = default; + } // end namespace lld |