[BOLT] Remove redundant declarations (NFC) (#166893)

In C++17, static constexpr members are implicitly inline, so they no
longer require an out-of-line definition.

Identified with readability-redundant-declaration.
This commit is contained in:
Kazu Hirata
2025-11-07 07:58:24 -08:00
committed by GitHub
parent 70f4b596cf
commit bddab8359e
4 changed files with 0 additions and 7 deletions

View File

@@ -22,8 +22,6 @@
namespace llvm {
namespace bolt {
constexpr uint32_t BinaryBasicBlock::INVALID_OFFSET;
bool operator<(const BinaryBasicBlock &LHS, const BinaryBasicBlock &RHS) {
return LHS.Index < RHS.Index;
}