$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Peter Dimov (pdimov_at_[hidden])
Date: 2002-01-24 10:10:47
I just wrote this:
template<class V> std::string to_string(V const & v)
{
std::ostringstream os;
os << v;
return os.str();
}
template<> std::string to_string(std::string const & v)
{
return v;
}
for Nth time. Why don't we have this in Boost? And where should it go?
-- Peter Dimov Multi Media Ltd.