util/TemplateString: rename CharAsString() to FromChar()

This commit is contained in:
Max Kellermann
2020-11-30 22:23:27 +01:00
parent 3af35aee9e
commit b47e0cffdd
2 changed files with 7 additions and 7 deletions

View File

@@ -63,7 +63,7 @@ Empty() noexcept
* A string consisting of a single character.
*/
constexpr auto
CharAsString(char ch) noexcept
FromChar(char ch) noexcept
{
Buffer<1> result{};
result.value[0] = ch;