Details
Details
- Reviewers
jingham davide jasonmolenda aprantl
Diff Detail
Diff Detail
Event Timeline
source/Breakpoint/BreakpointID.cpp | ||
---|---|---|
49 | You can probably make this static constexpr llvm::StringLiteral and avoid constructors altogether.. |
Comment Actions
BTW, to appease older versions of gcc you will need to write the initializer as = {{"-"}, {"to"}, ...} (i.e. add extra {} around the strings).
You can probably make this static constexpr llvm::StringLiteral and avoid constructors altogether..