aboutsummaryrefslogtreecommitdiffstats
path: root/ExpressionCompiler.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-12-13 00:22:19 +0800
committerChristian <c@ethdev.com>2014-12-13 00:22:45 +0800
commit6893d4d4557e9968feaa162c8fc5ea3859aa0565 (patch)
tree034b8915c6f66baa2d5e2e7d41c998b85aa589ea /ExpressionCompiler.h
parente2547526ab82ce00511da0c69f7e7de5944d6530 (diff)
parent3860814fa0a50ea496926069c4144209fdccdc3a (diff)
downloaddexon-solidity-6893d4d4557e9968feaa162c8fc5ea3859aa0565.tar.gz
dexon-solidity-6893d4d4557e9968feaa162c8fc5ea3859aa0565.tar.zst
dexon-solidity-6893d4d4557e9968feaa162c8fc5ea3859aa0565.zip
Merge remote-tracking branch 'ethereum/develop' into sol_swapConstants
Conflicts: test/solidityOptimizerTest.cpp
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r--ExpressionCompiler.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h
index fb4577c8..c0b173d4 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);