[Debuginfo][NFC] removes redundant semicolon.

This commit is contained in:
Alexey Lapshin 2019-11-21 15:00:40 +03:00
parent 24e9886793
commit 7b957ddc98
1 changed files with 1 additions and 1 deletions

View File

@ -968,7 +968,7 @@ DWARFVerifier::verifyNameIndexBuckets(const DWARFDebugNames::NameIndex &NI,
constexpr BucketInfo(uint32_t Bucket, uint32_t Index)
: Bucket(Bucket), Index(Index) {}
bool operator<(const BucketInfo &RHS) const { return Index < RHS.Index; };
bool operator<(const BucketInfo &RHS) const { return Index < RHS.Index; }
};
uint32_t NumErrors = 0;