aboutsummaryrefslogtreecommitdiffstats
path: root/ExpressionCompiler.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2015-02-18 07:15:08 +0800
committerChristian <c@ethdev.com>2015-02-18 07:15:32 +0800
commit197b184d256dcfc086ce1ff0e3f63e053aba2276 (patch)
treebe00c1a03aceebb3b35b25078ac6ebe201157aa7 /ExpressionCompiler.h
parent294648b534e294554f5ceb8467667eac3a60a3f1 (diff)
downloaddexon-solidity-197b184d256dcfc086ce1ff0e3f63e053aba2276.tar.gz
dexon-solidity-197b184d256dcfc086ce1ff0e3f63e053aba2276.tar.zst
dexon-solidity-197b184d256dcfc086ce1ff0e3f63e053aba2276.zip
Fixes for assigning and deleting structs containing byte arrays.
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r--ExpressionCompiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h
index 734da50d..471d8186 100644
--- a/ExpressionCompiler.h
+++ b/ExpressionCompiler.h
@@ -144,7 +144,7 @@ private:
void retrieveValue(Location const& _location, bool _remove = false) const;
/// Moves a value from the stack to the lvalue. Removes the value if @a _move is true.
/// @a _location is the source location of the expression that caused this operation.
- /// Stack pre: [lvalue_ref] value
+ /// Stack pre: value [lvalue_ref]
/// Stack post if !_move: value_of(lvalue_ref)
void storeValue(Type const& _sourceType, Location const& _location = Location(), bool _move = false) const;
/// Stores zero in the lvalue.