diff options
author | chriseth <chris@ethereum.org> | 2018-10-17 23:05:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-17 23:05:49 +0800 |
commit | f2f72ff7eea9a461ae8c71a13428e499c8b91025 (patch) | |
tree | 02c46d9f13ff85b5a2ad3d124054bdfc71af4791 /libsolidity/codegen/CompilerContext.cpp | |
parent | 6b7d182658988f22ba23cc3852510864881515e2 (diff) | |
parent | 16c2a775fd532c301eae3abecc8d68c5c421a9a0 (diff) | |
download | dexon-solidity-f2f72ff7eea9a461ae8c71a13428e499c8b91025.tar.gz dexon-solidity-f2f72ff7eea9a461ae8c71a13428e499c8b91025.tar.zst dexon-solidity-f2f72ff7eea9a461ae8c71a13428e499c8b91025.zip |
Merge pull request #5227 from ethereum/doNotRemoveExternallyUsedFunction
Prevent externally used functions from being removed.
Diffstat (limited to 'libsolidity/codegen/CompilerContext.cpp')
-rw-r--r-- | libsolidity/codegen/CompilerContext.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libsolidity/codegen/CompilerContext.cpp b/libsolidity/codegen/CompilerContext.cpp index 089386b5..210b613d 100644 --- a/libsolidity/codegen/CompilerContext.cpp +++ b/libsolidity/codegen/CompilerContext.cpp @@ -313,6 +313,7 @@ void CompilerContext::resetVisitedNodes(ASTNode const* _node) void CompilerContext::appendInlineAssembly( string const& _assembly, vector<string> const& _localVariables, + set<string> const&, bool _system ) { |