Try to fix Android build.

Seems it doesn't like the implicit conversion from
StringRef[] to ArrayRef<StringRef>.

llvm-svn: 283351
This commit is contained in:
Zachary Turner 2016-10-05 17:58:46 +00:00
parent c631167609
commit 0debabb3d0
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ bool BreakpointID::IsValidIDExpression(llvm::StringRef str) {
}
llvm::ArrayRef<llvm::StringRef> BreakpointID::GetRangeSpecifiers() {
return g_range_specifiers;
return llvm::makeArrayRef(g_range_specifiers);
}
void BreakpointID::GetDescription(Stream *s, lldb::DescriptionLevel level) {