aboutsummaryrefslogtreecommitdiffstats
path: root/LValue.cpp
diff options
context:
space:
mode:
authorarkpar <arkady.paronyan@gmail.com>2015-03-03 00:34:53 +0800
committerarkpar <arkady.paronyan@gmail.com>2015-03-03 00:34:53 +0800
commit5efd2fbab73b39b03b10332a6644ed19708c1c91 (patch)
treef1e4eaa1ffdadd06280c84e23435d91b41413cfe /LValue.cpp
parentc3def50c9353790f91da431aff61c8c0fc7144d5 (diff)
parent7f37659a28253f48dc128998017f9ca9a3351506 (diff)
downloaddexon-solidity-5efd2fbab73b39b03b10332a6644ed19708c1c91.tar
dexon-solidity-5efd2fbab73b39b03b10332a6644ed19708c1c91.tar.gz
dexon-solidity-5efd2fbab73b39b03b10332a6644ed19708c1c91.tar.bz2
dexon-solidity-5efd2fbab73b39b03b10332a6644ed19708c1c91.tar.lz
dexon-solidity-5efd2fbab73b39b03b10332a6644ed19708c1c91.tar.xz
dexon-solidity-5efd2fbab73b39b03b10332a6644ed19708c1c91.tar.zst
dexon-solidity-5efd2fbab73b39b03b10332a6644ed19708c1c91.zip
Merge branch 'develop' of https://github.com/ethereum/cpp-ethereum into mix_srcdbg
Diffstat (limited to 'LValue.cpp')
-rw-r--r--LValue.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/LValue.cpp b/LValue.cpp
index 78154f42..452ca1c7 100644
--- a/LValue.cpp
+++ b/LValue.cpp
@@ -240,14 +240,14 @@ StorageArrayLength::StorageArrayLength(CompilerContext& _compilerContext, const
solAssert(m_arrayType.isDynamicallySized(), "");
}
-void StorageArrayLength::retrieveValue(SourceLocation const& _location, bool _remove) const
+void StorageArrayLength::retrieveValue(SourceLocation const&, bool _remove) const
{
if (!_remove)
m_context << eth::Instruction::DUP1;
m_context << eth::Instruction::SLOAD;
}
-void StorageArrayLength::storeValue(Type const& _sourceType, SourceLocation const& _location, bool _move) const
+void StorageArrayLength::storeValue(Type const&, SourceLocation const&, bool _move) const
{
if (_move)
m_context << eth::Instruction::SWAP1;
@@ -256,7 +256,7 @@ void StorageArrayLength::storeValue(Type const& _sourceType, SourceLocation cons
ArrayUtils(m_context).resizeDynamicArray(m_arrayType);
}
-void StorageArrayLength::setToZero(SourceLocation const& _location, bool _removeReference) const
+void StorageArrayLength::setToZero(SourceLocation const&, bool _removeReference) const
{
if (!_removeReference)
m_context << eth::Instruction::DUP1;