diff options
| author | Alexey Lapshin <a.v.lapshin@mail.ru> | 2019-11-21 15:00:40 +0300 | 
|---|---|---|
| committer | Alexey Lapshin <a.v.lapshin@mail.ru> | 2019-11-21 16:16:24 +0300 | 
| commit | 7b957ddc981d65276ca5aa0e7208890269cc9682 (patch) | |
| tree | a08c10dacfb90d8dfe75517bd2ee38d27db0b2a6 | |
| parent | 24e98867937d5bb89605fd7be7e9ebdd3d5fb935 (diff) | |
| download | bcm5719-llvm-7b957ddc981d65276ca5aa0e7208890269cc9682.tar.gz bcm5719-llvm-7b957ddc981d65276ca5aa0e7208890269cc9682.zip  | |
[Debuginfo][NFC] removes redundant semicolon.
| -rw-r--r-- | llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp b/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp index 357cdb299a2..d4cadd0f252 100644 --- a/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp +++ b/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp @@ -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;  | 

