[lldb][NFC] Don't call call formatv for no reason in LibCxxOptional

This commit is contained in:
Raphael Isemann 2020-02-10 12:39:42 +01:00
parent 97212121c5
commit 1a779550aa
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ ValueObjectSP OptionalFrontEnd::GetChildAtIndex(size_t idx) {
if (!holder_type)
return ValueObjectSP();
return val_sp->Clone(ConstString(llvm::formatv("Value").str()));
return val_sp->Clone(ConstString("Value"));
}
SyntheticChildrenFrontEnd *