mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
10 lines
172 B
C++
10 lines
172 B
C++
#ifndef _Eigen_UppMatrixPlugin_h_
|
|
#define _Eigen_UppMatrixPlugin_h_
|
|
|
|
UPP::String ToString() const {
|
|
std::stringstream s;
|
|
s << *this;
|
|
return s.str();
|
|
}
|
|
|
|
#endif
|