diff options
author | Matías Aereal Aeón <aereal@gmail.com> | 2018-08-08 14:55:43 +0800 |
---|---|---|
committer | Matías Aereal Aeón <aereal@gmail.com> | 2018-08-08 14:55:43 +0800 |
commit | 7dae58cbcc3df64e6add31020a7f44de1b28b3de (patch) | |
tree | c95359c6125d34f5061ac7851ac7d131bc28a3fa /libdevcore | |
parent | 009a55c82d22f08fd207739d7b8aeff215fb7c03 (diff) | |
download | dexon-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')
-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; } |