Remove an unused default argument.

llvm-svn: 315386
This commit is contained in:
Rui Ueyama 2017-10-10 23:09:23 +00:00
parent fcc05627d4
commit ed94f36154
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ private:
// have to be as compact as possible, which is why we don't store the size (can
// be found by looking at the next one) and put the hash in a side table.
struct SectionPiece {
SectionPiece(size_t Off, bool Live = false)
SectionPiece(size_t Off, bool Live)
: InputOff(Off), Live(Live || !Config->GcSections), OutputOff(-1) {}
size_t InputOff : 8 * sizeof(ssize_t) - 1;