diff options
author | Christian <c@ethdev.com> | 2014-12-05 02:38:24 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-12-08 19:39:29 +0800 |
commit | 57e6827cb57708ed8f687bf9b0a304b1481cf742 (patch) | |
tree | a84fb74e102588207cf1439bd0be901087d63b7a /ExpressionCompiler.h | |
parent | 260a1529a758fb7b75840e05d8c0be18975ff3b2 (diff) | |
download | dexon-solidity-57e6827cb57708ed8f687bf9b0a304b1481cf742.tar.gz dexon-solidity-57e6827cb57708ed8f687bf9b0a304b1481cf742.tar.zst dexon-solidity-57e6827cb57708ed8f687bf9b0a304b1481cf742.zip |
Calling functions of other contracts.
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r-- | ExpressionCompiler.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h index 83d7cdc6..fbecbdc8 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -31,9 +31,10 @@ class AssemblyItem; // forward } namespace solidity { -class CompilerContext; // forward -class Type; // forward -class IntegerType; // forward +// forward declarations +class CompilerContext; +class Type; +class IntegerType; /** * Compiler for expressions, i.e. converts an AST tree whose root is an Expression into a stream |