aboutsummaryrefslogtreecommitdiffstats
path: root/LValue.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-03-12 19:25:07 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-03-12 19:53:01 +0800
commit3b54583d380886de57b0668bab4fff8cfa298b8c (patch)
tree1110d5ee68ab08c334bbb40bd935e691bbb762ce /LValue.cpp
parentc81b4989535cde327b95a65c53fd271dc1e52f82 (diff)
downloaddexon-solidity-3b54583d380886de57b0668bab4fff8cfa298b8c.tar
dexon-solidity-3b54583d380886de57b0668bab4fff8cfa298b8c.tar.gz
dexon-solidity-3b54583d380886de57b0668bab4fff8cfa298b8c.tar.bz2
dexon-solidity-3b54583d380886de57b0668bab4fff8cfa298b8c.tar.lz
dexon-solidity-3b54583d380886de57b0668bab4fff8cfa298b8c.tar.xz
dexon-solidity-3b54583d380886de57b0668bab4fff8cfa298b8c.tar.zst
dexon-solidity-3b54583d380886de57b0668bab4fff8cfa298b8c.zip
Style fixes and some additional hash to bytes32 renaming
Diffstat (limited to 'LValue.cpp')
-rw-r--r--LValue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/LValue.cpp b/LValue.cpp
index dc07ec31..a56ed54c 100644
--- a/LValue.cpp
+++ b/LValue.cpp
@@ -268,7 +268,7 @@ void StorageByteArrayElement::storeValue(Type const&, SourceLocation const&, boo
// stack: value ref (1<<(32-byte_number)) old_full_value_with_cleared_byte
m_context << eth::Instruction::SWAP1;
m_context << (u256(1) << (256 - 8)) << eth::Instruction::DUP5 << eth::Instruction::DIV
- << eth::Instruction::MUL << eth::Instruction::OR;
+ << eth::Instruction::MUL << eth::Instruction::OR;
// stack: value ref new_full_value
m_context << eth::Instruction::SWAP1 << eth::Instruction::SSTORE;
if (_move)