diff options
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r-- | ExpressionCompiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h index 18c3817a..caecbfe8 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -95,8 +95,8 @@ private: /// Appends code that copies the given arguments to memory (with optional offset). /// @returns the number of bytes copied to memory unsigned appendArgumentCopyToMemory(TypePointers const& _types, - std::vector<ASTPointer<Expression const>> const& _arguments, - unsigned _memoryOffset = 0); + std::vector<ASTPointer<Expression const>> const& _arguments, + unsigned _memoryOffset = 0); /// Appends code that evaluates a single expression and copies it to memory (with optional offset). /// @returns the number of bytes copied to memory unsigned appendExpressionCopyToMemory(Type const& _expectedType, Expression const& _expression, |