Skip to content
Snippets Groups Projects
Commit 2eba8e08 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix to string on char datatype

parent 58f272d3
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,10 @@ std::string to_string ( double value ) {
return std::to_string ( value );
}
 
std::string to_string ( char value ) {
return std::string ( 1, value );
}
template < >
std::string from_string ( const std::string & value ) {
return value;
......
......@@ -79,6 +79,7 @@ std::string to_string ( unsigned long long value );
 
std::string to_string ( double value );
 
std::string to_string ( char value );
 
 
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment