diff options
author | Christian <c@ethdev.com> | 2014-12-10 01:46:18 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-12-10 23:30:20 +0800 |
commit | 130ff85e85de3ea8a9666f84843428a3a09b1aab (patch) | |
tree | afff06eddf204678b099dc9fae187a697e8debcc /ExpressionCompiler.h | |
parent | e8b7d266641175039d40c344449409a60527156e (diff) | |
download | dexon-solidity-130ff85e85de3ea8a9666f84843428a3a09b1aab.tar.gz dexon-solidity-130ff85e85de3ea8a9666f84843428a3a09b1aab.tar.zst dexon-solidity-130ff85e85de3ea8a9666f84843428a3a09b1aab.zip |
String types.
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r-- | ExpressionCompiler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h index 966be30e..386a7116 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -35,6 +35,7 @@ namespace solidity { class CompilerContext; class Type; class IntegerType; +class StaticStringType; /** * Compiler for expressions, i.e. converts an AST tree whose root is an Expression into a stream @@ -75,7 +76,7 @@ private: /// @} /// Appends an implicit or explicit type conversion. For now this comprises only erasing - /// higher-order bits (@see appendHighBitCleanup) when widening integer types. + /// higher-order bits (@see appendHighBitCleanup) when widening integer. /// If @a _cleanupNeeded, high order bits cleanup is also done if no type conversion would be /// necessary. void appendTypeConversion(Type const& _typeOnStack, Type const& _targetType, bool _cleanupNeeded = false); |