diff options
| author | Rui Ueyama <ruiu@google.com> | 2015-03-27 21:39:13 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2015-03-27 21:39:13 +0000 |
| commit | 988355c3aec10119b9ba3f48f91957181f1b306c (patch) | |
| tree | e0a410cee6776b0fdcb36e7d94fbacae15d25012 /lld/lib/ReaderWriter/ELF/SectionChunks.h | |
| parent | 44d5057e38e650ebb03a3f2095cc698fe657e5bd (diff) | |
| download | bcm5719-llvm-988355c3aec10119b9ba3f48f91957181f1b306c.tar.gz bcm5719-llvm-988355c3aec10119b9ba3f48f91957181f1b306c.zip | |
Remove empty constructors.
llvm-svn: 233423
Diffstat (limited to 'lld/lib/ReaderWriter/ELF/SectionChunks.h')
| -rw-r--r-- | lld/lib/ReaderWriter/ELF/SectionChunks.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lld/lib/ReaderWriter/ELF/SectionChunks.h b/lld/lib/ReaderWriter/ELF/SectionChunks.h index d9176837847..03ccfa059c6 100644 --- a/lld/lib/ReaderWriter/ELF/SectionChunks.h +++ b/lld/lib/ReaderWriter/ELF/SectionChunks.h @@ -53,9 +53,7 @@ public: /// \brief Finalize the section contents before writing /// \brief Does this section have an output segment. - virtual bool hasOutputSegment() { - return false; - } + virtual bool hasOutputSegment() { return false; } /// Return if the section is a loadable section that occupies memory virtual bool isLoadableSection() const { return false; } |

