aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen
diff options
context:
space:
mode:
authorMatías Aereal Aeón <aereal@gmail.com>2018-08-08 22:26:30 +0800
committerMatías Aereal Aeón <aereal@gmail.com>2018-08-08 22:26:30 +0800
commite902ce1aa02dc5d19cc9dd231fa538646884826d (patch)
treebdac717d124e725679929c722cfe2c752cc90dd9 /libsolidity/codegen
parent7dae58cbcc3df64e6add31020a7f44de1b28b3de (diff)
downloaddexon-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 'libsolidity/codegen')
-rw-r--r--libsolidity/codegen/ContractCompiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/ContractCompiler.cpp b/libsolidity/codegen/ContractCompiler.cpp
index 2f15a33d..2fffcf76 100644
--- a/libsolidity/codegen/ContractCompiler.cpp
+++ b/libsolidity/codegen/ContractCompiler.cpp
@@ -50,7 +50,7 @@ class StackHeightChecker
public:
explicit StackHeightChecker(CompilerContext const& _context):
m_context(_context), stackHeight(m_context.stackHeight()) {}
- void check() { solAssert(m_context.stackHeight() == stackHeight, std::string("I sense a disturbance in the stack: ") + std::to_string(m_context.stackHeight()) + " vs " + std::to_string(stackHeight)); }
+ void check() { solAssert(m_context.stackHeight() == stackHeight, std::string("I sense a disturbance in the stack: ") + to_string(m_context.stackHeight()) + " vs " + to_string(stackHeight)); }
private:
CompilerContext const& m_context;
unsigned stackHeight;