From e48ee5954934dca149c31d675ca8f25909a87b91 Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 23 Oct 2015 12:51:32 +0200 Subject: Fix override warning. --- libsolidity/codegen/LValue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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>&& _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, -- cgit