From a03590d6fdd5e00a0184bd5ab8be84cb8d703945 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Sun, 18 Aug 2019 12:38:18 +0200 Subject: [PATCH] [DEBUG] correct the line number in execption log --- etk-core/Exception.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etk-core/Exception.cpp b/etk-core/Exception.cpp index 485df2b..2dbdc4d 100644 --- a/etk-core/Exception.cpp +++ b/etk-core/Exception.cpp @@ -71,7 +71,7 @@ etk::String etk::Exception::toString() const { out += " in "; out += m_file; out += ":"; - out += m_line; + out += etk::toString(m_line); } out += "}"; return out;