diff options
author | chriseth <chris@ethereum.org> | 2018-11-09 22:39:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-09 22:39:57 +0800 |
commit | 6bbedab383f7c8799ef7bcf4cad2bb008a7fcf2c (patch) | |
tree | c1315828c5db42b0f01462d15b0a528eea2cde3b /libsolidity/codegen | |
parent | cbd0116e98862a36d6c904ed03d8d26b248838f0 (diff) | |
parent | e78b95d9d4ecb6d8d56ca0f04a6f9b4f7d974fbb (diff) | |
download | dexon-solidity-6bbedab383f7c8799ef7bcf4cad2bb008a7fcf2c.tar dexon-solidity-6bbedab383f7c8799ef7bcf4cad2bb008a7fcf2c.tar.gz dexon-solidity-6bbedab383f7c8799ef7bcf4cad2bb008a7fcf2c.tar.bz2 dexon-solidity-6bbedab383f7c8799ef7bcf4cad2bb008a7fcf2c.tar.lz dexon-solidity-6bbedab383f7c8799ef7bcf4cad2bb008a7fcf2c.tar.xz dexon-solidity-6bbedab383f7c8799ef7bcf4cad2bb008a7fcf2c.tar.zst dexon-solidity-6bbedab383f7c8799ef7bcf4cad2bb008a7fcf2c.zip |
Merge pull request #5265 from ethereum/cleanupsha3
Simplify sha3.
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp index 63faddd3..bdf91fbf 100644 --- a/libsolidity/codegen/ExpressionCompiler.cpp +++ b/libsolidity/codegen/ExpressionCompiler.cpp @@ -25,7 +25,7 @@ #include <boost/range/adaptor/reversed.hpp> #include <boost/algorithm/string/replace.hpp> #include <libdevcore/Common.h> -#include <libdevcore/SHA3.h> +#include <libdevcore/Keccak256.h> #include <libsolidity/ast/AST.h> #include <libsolidity/codegen/ExpressionCompiler.h> #include <libsolidity/codegen/CompilerContext.h> |