diff options
author | Matías Aereal Aeón <aereal@gmail.com> | 2018-08-08 22:26:30 +0800 |
---|---|---|
committer | Matías Aereal Aeón <aereal@gmail.com> | 2018-08-08 22:26:30 +0800 |
commit | e902ce1aa02dc5d19cc9dd231fa538646884826d (patch) | |
tree | bdac717d124e725679929c722cfe2c752cc90dd9 /libdevcore | |
parent | 7dae58cbcc3df64e6add31020a7f44de1b28b3de (diff) | |
download | dexon-solidity-e902ce1aa02dc5d19cc9dd231fa538646884826d.tar dexon-solidity-e902ce1aa02dc5d19cc9dd231fa538646884826d.tar.gz dexon-solidity-e902ce1aa02dc5d19cc9dd231fa538646884826d.tar.bz2 dexon-solidity-e902ce1aa02dc5d19cc9dd231fa538646884826d.tar.lz dexon-solidity-e902ce1aa02dc5d19cc9dd231fa538646884826d.tar.xz dexon-solidity-e902ce1aa02dc5d19cc9dd231fa538646884826d.tar.zst dexon-solidity-e902ce1aa02dc5d19cc9dd231fa538646884826d.zip |
Removing std:: from std::to_string and include for boost/lexical_cast
Diffstat (limited to 'libdevcore')
-rw-r--r-- | libdevcore/Exceptions.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libdevcore/Exceptions.cpp b/libdevcore/Exceptions.cpp index c614aece..97f03f6e 100644 --- a/libdevcore/Exceptions.cpp +++ b/libdevcore/Exceptions.cpp @@ -17,8 +17,6 @@ #include <libdevcore/Exceptions.h> -#include <boost/lexical_cast.hpp> - using namespace std; using namespace dev; @@ -43,7 +41,7 @@ string Exception::lineInfo() const ret += *file; ret += ':'; if (line) - ret += std::to_string(*line); + ret += to_string(*line); return ret; } |