Update src/libutil/fmt.hh

Co-authored-by: John Ericson <git@JohnEricson.me>
This commit is contained in:
Ben Burdette 2020-06-22 10:00:37 -06:00 committed by GitHub
parent be4f444175
commit 28b079067f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -139,11 +139,9 @@ inline hintformat hintfmt(const std::string & fs, const Args & ... args)
return f;
}
inline hintformat hintfmt(std::string fs)
inline hintformat hintfmt(std::string plain_string)
{
// we won't be receiving any args in this case, so escape all percents.
boost::replace_all(fs, "%", "%%");
hintformat f(fs);
return f;
// we won't be receiving any args in this case, so just print the original string
return hintfmt("%s", plain_string);
}
}