ultimatepp/uppsrc/plugin/Eigen/ToStringPlugin.h
koldo bf8660be5a Eigen: Updated to 3.3.7
git-svn-id: svn://ultimatepp.org/upp/trunk@12732 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2019-02-02 16:43:54 +00:00

7 lines
94 B
C++

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