Fix ToString for std classes.

This commit is contained in:
vng 2013-08-07 22:15:22 +03:00
parent e0107e5564
commit 01df49777f
2 changed files with 4 additions and 3 deletions

View file

@ -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
View file

@ -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;