Fix type of optimizeRuns

This commit is contained in:
Alex Beregszaszi 2016-11-30 13:00:51 +00:00 committed by chriseth
parent ea7a6520b2
commit f869792eec
2 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ private:
ReadFileCallback m_readFile; ReadFileCallback m_readFile;
bool m_optimize = false; bool m_optimize = false;
size_t m_optimizeRuns = 200; unsigned m_optimizeRuns = 200;
std::map<std::string, h160> m_libraries; std::map<std::string, h160> m_libraries;
/// list of path prefix remappings, e.g. mylibrary: github.com/ethereum = /usr/local/ethereum /// list of path prefix remappings, e.g. mylibrary: github.com/ethereum = /usr/local/ethereum
/// "context:prefix=target" /// "context:prefix=target"

View File

@ -279,7 +279,7 @@ protected:
bytes data; bytes data;
}; };
size_t m_optimizeRuns = 200; unsigned m_optimizeRuns = 200;
bool m_optimize = false; bool m_optimize = false;
Address m_sender; Address m_sender;
Address m_contractAddress; Address m_contractAddress;