simplify conversion of int to string

issue#70
Houtan Bastani 2018-07-02 11:21:07 +02:00
parent 543e2b16e3
commit a51dd224e4
1 changed files with 1 additions and 3 deletions

View File

@ -275,9 +275,7 @@ IntMV::operator!() const noexcept(false)
string
IntMV::toString() const
{
ostringstream ss;
ss << value;
return ss.str();
return to_string(value);
}
string