aboutsummaryrefslogtreecommitdiffstats
path: root/LValue.cpp
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2015-03-02 22:12:54 +0800
committerChristian <c@ethdev.com>2015-03-02 22:12:54 +0800
commit7f37659a28253f48dc128998017f9ca9a3351506 (patch)
tree02eba7d8f0151f6e895e3f98540a156d684e58c5 /LValue.cpp
parent9b6b2759b4c5ff622878eda7f136b3541cb90b52 (diff)
downloaddexon-solidity-7f37659a28253f48dc128998017f9ca9a3351506.tar.gz
dexon-solidity-7f37659a28253f48dc128998017f9ca9a3351506.tar.zst
dexon-solidity-7f37659a28253f48dc128998017f9ca9a3351506.zip
Removed unused variables.
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;