ultimatepp/uppsrc/plugin/Eigen/ToStringPlugin.h
koldo b4b37e62fc .Eigen:Added Copying
git-svn-id: svn://ultimatepp.org/upp/trunk@15076 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-09-18 21:29:13 +00:00

7 lines
95 B
C++

UPP::String ToString() const {
std::stringstream s;
s << *this;
return s.str();
}