[DEBUG] correct the line number in execption log

This commit is contained in:
Edouard DUPIN 2019-08-18 12:38:18 +02:00
parent 18876f0162
commit a03590d6fd

View File

@ -71,7 +71,7 @@ etk::String etk::Exception::toString() const {
out += " in "; out += " in ";
out += m_file; out += m_file;
out += ":"; out += ":";
out += m_line; out += etk::toString(m_line);
} }
out += "}"; out += "}";
return out; return out;