diff options
Diffstat (limited to 'libdevcore/Exceptions.cpp')
-rw-r--r-- | libdevcore/Exceptions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdevcore/Exceptions.cpp b/libdevcore/Exceptions.cpp index f204dbc2..c614aece 100644 --- a/libdevcore/Exceptions.cpp +++ b/libdevcore/Exceptions.cpp @@ -43,7 +43,7 @@ string Exception::lineInfo() const ret += *file; ret += ':'; if (line) - ret += boost::lexical_cast<string>(*line); + ret += std::to_string(*line); return ret; } |