[lldb] Remove redundant WithFormat suffixes (NFC)

Replace calls to FooWithFormat() with calls to Foo() when only one
argument is provided and the given string doesn't need to be formatted.
This commit is contained in:
Jonas Devlieghere
2020-07-20 22:57:06 -07:00
parent 0ebdc3be41
commit 8953376478
17 changed files with 39 additions and 46 deletions

View File

@@ -797,7 +797,7 @@ public:
llvm::Optional<size_t> opt_bit_align = m_type.GetTypeBitAlign(exe_scope);
if (!opt_bit_align) {
err.SetErrorStringWithFormat("can't get the type alignment");
err.SetErrorString("can't get the type alignment");
return;
}