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 /libsolidity/interface/Exceptions.h | |
parent | 009a55c82d22f08fd207739d7b8aeff215fb7c03 (diff) | |
download | dexon-solidity-7dae58cbcc3df64e6add31020a7f44de1b28b3de.tar dexon-solidity-7dae58cbcc3df64e6add31020a7f44de1b28b3de.tar.gz dexon-solidity-7dae58cbcc3df64e6add31020a7f44de1b28b3de.tar.bz2 dexon-solidity-7dae58cbcc3df64e6add31020a7f44de1b28b3de.tar.lz dexon-solidity-7dae58cbcc3df64e6add31020a7f44de1b28b3de.tar.xz dexon-solidity-7dae58cbcc3df64e6add31020a7f44de1b28b3de.tar.zst dexon-solidity-7dae58cbcc3df64e6add31020a7f44de1b28b3de.zip |
Replace boost:lexical_cast<std::string> for std::to_string.
Diffstat (limited to 'libsolidity/interface/Exceptions.h')
-rw-r--r-- | libsolidity/interface/Exceptions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/interface/Exceptions.h b/libsolidity/interface/Exceptions.h index 7c66d572..629b8f3f 100644 --- a/libsolidity/interface/Exceptions.h +++ b/libsolidity/interface/Exceptions.h @@ -117,7 +117,7 @@ public: if (occurrences > 32) { infos.resize(32); - _message += " Truncated from " + boost::lexical_cast<std::string>(occurrences) + " to the first 32 occurrences."; + _message += " Truncated from " + std::to_string(occurrences) + " to the first 32 occurrences."; } } |