This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: cast_stream not declared error


Hi Andrew,

Have you defined cast_stream anywhere?

#include <sstream>
template <class out_t, class in_t>
out_t cast_stream(in_t const& in)
{
  std::stringstream s;
  s << in;
  out_t result;
  s >> result;
  return result;
}

HTH,
--Eljay


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]