Fix ToString for std classes.
This commit is contained in:
parent
e0107e5564
commit
01df49777f
2 changed files with 4 additions and 3 deletions
3
env/message_list.hpp
vendored
3
env/message_list.hpp
vendored
|
@ -1,13 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
#include "strings.hpp"
|
||||
|
||||
#include "message_std.hpp"
|
||||
|
||||
namespace msg
|
||||
{
|
||||
|
||||
inline string ToString(char const * s) { return s; }
|
||||
inline string ToString(string const & s) { return s; }
|
||||
|
||||
/// Override ToString function for your custom class in it's namespace.
|
||||
/// Your function will be called according to the ADL lookup.
|
||||
|
|
4
env/message_std.hpp
vendored
4
env/message_std.hpp
vendored
|
@ -4,9 +4,11 @@
|
|||
#include "../std/sstream.hpp"
|
||||
|
||||
|
||||
namespace msg
|
||||
namespace std
|
||||
{
|
||||
|
||||
inline string ToString(string const & s) { return s; }
|
||||
|
||||
template <class T> string ToString(vector<T> const & v)
|
||||
{
|
||||
ostringstream ss;
|
||||
|
|
Reference in a new issue