aboutsummaryrefslogtreecommitdiffstats
path: root/LValue.h
diff options
context:
space:
mode:
authorGav Wood <g@ethdev.com>2015-06-09 22:18:10 +0800
committerGav Wood <g@ethdev.com>2015-06-09 22:18:10 +0800
commit99fed1aba7eb2af17d7a75b5578f73fa969b46df (patch)
tree5c84dd4aba7b86591506e2c282b7d21130952c0b /LValue.h
parentc2a9419e495e931a825e8146aec49ffc34e44954 (diff)
parent8061002b9cda8b5741bcbbb4248b1369bd10eb29 (diff)
downloaddexon-solidity-99fed1aba7eb2af17d7a75b5578f73fa969b46df.tar
dexon-solidity-99fed1aba7eb2af17d7a75b5578f73fa969b46df.tar.gz
dexon-solidity-99fed1aba7eb2af17d7a75b5578f73fa969b46df.tar.bz2
dexon-solidity-99fed1aba7eb2af17d7a75b5578f73fa969b46df.tar.lz
dexon-solidity-99fed1aba7eb2af17d7a75b5578f73fa969b46df.tar.xz
dexon-solidity-99fed1aba7eb2af17d7a75b5578f73fa969b46df.tar.zst
dexon-solidity-99fed1aba7eb2af17d7a75b5578f73fa969b46df.zip
Merge pull request #2112 from chfast/refactor_move_override
Pessimising moves and missing overrides
Diffstat (limited to 'LValue.h')
-rw-r--r--LValue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LValue.h b/LValue.h
index 1617e816..726d6332 100644
--- a/LValue.h
+++ b/LValue.h
@@ -109,7 +109,7 @@ public:
StorageItem(CompilerContext& _compilerContext, Declaration const& _declaration);
/// Constructs the LValue and assumes that the storage reference is already on the stack.
StorageItem(CompilerContext& _compilerContext, Type const& _type);
- virtual unsigned sizeOnStack() const { return 2; }
+ virtual unsigned sizeOnStack() const override { return 2; }
virtual void retrieveValue(SourceLocation const& _location, bool _remove = false) const override;
virtual void storeValue(
Type const& _sourceType,