mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Removing std:: from std::to_string and include for boost/lexical_cast
This commit is contained in:
@@ -25,7 +25,6 @@
|
||||
#include <libevmasm/Instruction.h>
|
||||
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/lexical_cast.hpp>
|
||||
|
||||
#include <chrono>
|
||||
#include <string>
|
||||
@@ -82,8 +81,8 @@ public:
|
||||
BOOST_CHECK_MESSAGE(
|
||||
_optimizeRuns < 50 || optimizedSize < nonOptimizedSize,
|
||||
string("Optimizer did not reduce bytecode size. Non-optimized size: ") +
|
||||
std::to_string(nonOptimizedSize) + " - optimized size: " +
|
||||
std::to_string(optimizedSize)
|
||||
to_string(nonOptimizedSize) + " - optimized size: " +
|
||||
to_string(optimizedSize)
|
||||
);
|
||||
m_optimizedContract = m_contractAddress;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user