aboutsummaryrefslogtreecommitdiffstats
path: root/libdevcore/Exceptions.cpp
diff options
context:
space:
mode:
authorMatías Aereal Aeón <aereal@gmail.com>2018-08-08 14:55:43 +0800
committerMatías Aereal Aeón <aereal@gmail.com>2018-08-08 14:55:43 +0800
commit7dae58cbcc3df64e6add31020a7f44de1b28b3de (patch)
treec95359c6125d34f5061ac7851ac7d131bc28a3fa /libdevcore/Exceptions.cpp
parent009a55c82d22f08fd207739d7b8aeff215fb7c03 (diff)
downloaddexon-solidity-7dae58cbcc3df64e6add31020a7f44de1b28b3de.tar.gz
dexon-solidity-7dae58cbcc3df64e6add31020a7f44de1b28b3de.tar.zst
dexon-solidity-7dae58cbcc3df64e6add31020a7f44de1b28b3de.zip
Replace boost:lexical_cast<std::string> for std::to_string.
Diffstat (limited to 'libdevcore/Exceptions.cpp')
-rw-r--r--libdevcore/Exceptions.cpp2
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;
}