labath added inline comments.
================ Comment at: source/Breakpoint/BreakpointID.cpp:49 llvm::ArrayRef<llvm::StringRef> BreakpointID::GetRangeSpecifiers() { + static llvm::StringRef g_range_specifiers[] = {"-", "to", "To", "TO"}; return llvm::makeArrayRef(g_range_specifiers); ---------------- You can probably make this `static constexpr llvm::StringLiteral` and avoid constructors altogether.. https://reviews.llvm.org/D44055 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits