Skip to content

Commit 7b957dd

Browse files
committed
[Debuginfo][NFC] removes redundant semicolon.
1 parent 24e9886 commit 7b957dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -968,7 +968,7 @@ DWARFVerifier::verifyNameIndexBuckets(const DWARFDebugNames::NameIndex &NI,
968968

969969
constexpr BucketInfo(uint32_t Bucket, uint32_t Index)
970970
: Bucket(Bucket), Index(Index) {}
971-
bool operator<(const BucketInfo &RHS) const { return Index < RHS.Index; };
971+
bool operator<(const BucketInfo &RHS) const { return Index < RHS.Index; }
972972
};
973973

974974
uint32_t NumErrors = 0;

0 commit comments

Comments
 (0)