diff options
author | Christian <c@ethdev.com> | 2014-12-06 09:34:05 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-12-08 20:15:43 +0800 |
commit | e0ed942519fbf3a5be106fae2d1906b9c217df95 (patch) | |
tree | 972a0081f985651ce70728341c414549abf9d3bf /ExpressionCompiler.h | |
parent | f636ac6fc4eda7591c1056475c1258af5309a264 (diff) | |
download | dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.gz dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.zst dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.zip |
Removed unused members.
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r-- | ExpressionCompiler.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h index e93d3280..a02cddfc 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -132,10 +132,6 @@ private: CompilerContext& m_context; LValue m_currentLValue; - /// If a "virtual" function (i.e. a bulit-in function without jump tag) is encountered, the - /// actual function is stored here. @todo prevent assignment or store it with assignment - enum class SpecialFunction { NONE, SEND, SHA3, SUICIDE, ECRECOVER, SHA256, RIPEMD160 }; - SpecialFunction m_currentSpecialFunction; }; |