Include space as a printable character

This commit is contained in:
Andrew Noyes 2019-04-11 10:01:06 -07:00
parent cd5c9d91fa
commit 1135331ce6
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ struct TraceableString<char*> {
template<class T>
struct TraceableStringImpl : std::true_type {
static constexpr bool isPrintable(char c) { return c > 32 && c < 127; }
static constexpr bool isPrintable(char c) { return 32 <= c && c <= 126; }
template<class Str>
static std::string toString(Str&& value) {