forked from OSchip/llvm-project
[lldb][NFC] Don't call call formatv for no reason in LibCxxOptional
This commit is contained in:
parent
97212121c5
commit
1a779550aa
|
@ -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 *
|
||||
|
|
Loading…
Reference in New Issue