fixes for android

This commit is contained in:
Ari Lazier 2016-03-03 14:56:18 -08:00
parent 89fd01705d
commit d07f82b3ec

View File

@ -45,8 +45,8 @@ void List::verify_valid_row(size_t row_ndx, bool insertion) const
{
size_t size = m_link_view->size();
if (row_ndx > size || (!insertion && row_ndx == size)) {
throw std::out_of_range("Index " + std::to_string(row_ndx) + " is outside of range 0..." +
std::to_string(size) + ".");
throw std::out_of_range("Index " + to_string(row_ndx) + " is outside of range 0..." +
to_string(size) + ".");
}
}