aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-10-23 18:51:32 +0800
committerchriseth <c@ethdev.com>2015-10-23 18:51:49 +0800
commite48ee5954934dca149c31d675ca8f25909a87b91 (patch)
tree8a8f56273d821e7e4ac3d4e34c936c3aa02c3321 /libsolidity/codegen
parentcb8f6633b237dab7d54904e00fed111c176a812c (diff)
downloaddexon-solidity-e48ee5954934dca149c31d675ca8f25909a87b91.tar.gz
dexon-solidity-e48ee5954934dca149c31d675ca8f25909a87b91.tar.zst
dexon-solidity-e48ee5954934dca149c31d675ca8f25909a87b91.zip
Fix override warning.
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r--libsolidity/codegen/LValue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/LValue.h b/libsolidity/codegen/LValue.h
index 35cbec5b..e8c3aa80 100644
--- a/libsolidity/codegen/LValue.h
+++ b/libsolidity/codegen/LValue.h
@@ -204,7 +204,7 @@ public:
/// Constructs the LValue assuming that the other LValues are present on the stack.
/// Empty unique_ptrs are possible if e.g. some values should be ignored during assignment.
TupleObject(CompilerContext& _compilerContext, std::vector<std::unique_ptr<LValue>>&& _lvalues);
- virtual unsigned sizeOnStack() const;
+ virtual unsigned sizeOnStack() const override;
virtual void retrieveValue(SourceLocation const& _location, bool _remove = false) const override;
virtual void storeValue(
Type const& _sourceType,