diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/jsonParse-persistence.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/jsonParse-persistence.cpp b/lib/jsonParse-persistence.cpp index 6ecfff8..5062796 100644 --- a/lib/jsonParse-persistence.cpp +++ b/lib/jsonParse-persistence.cpp @@ -170,7 +170,7 @@ namespace Persistence {  	{  		strm << '"';  		std::for_each(value.begin(), value.end(), [this](char ch) { -			outFuncs[ch](strm, ch); +			outFuncs[(unsigned char)ch](strm, ch);  		});  		strm << '"';  	}  | 
