diff options
author | chriseth <c@ethdev.com> | 2015-10-23 19:23:42 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-10-23 19:23:42 +0800 |
commit | cefe9ae8224483e3ecc399ccbed122c489ae2b62 (patch) | |
tree | 8a8f56273d821e7e4ac3d4e34c936c3aa02c3321 | |
parent | cb8f6633b237dab7d54904e00fed111c176a812c (diff) | |
parent | e48ee5954934dca149c31d675ca8f25909a87b91 (diff) | |
download | dexon-solidity-cefe9ae8224483e3ecc399ccbed122c489ae2b62.tar dexon-solidity-cefe9ae8224483e3ecc399ccbed122c489ae2b62.tar.gz dexon-solidity-cefe9ae8224483e3ecc399ccbed122c489ae2b62.tar.bz2 dexon-solidity-cefe9ae8224483e3ecc399ccbed122c489ae2b62.tar.lz dexon-solidity-cefe9ae8224483e3ecc399ccbed122c489ae2b62.tar.xz dexon-solidity-cefe9ae8224483e3ecc399ccbed122c489ae2b62.tar.zst dexon-solidity-cefe9ae8224483e3ecc399ccbed122c489ae2b62.zip |
Merge pull request #170 from chriseth/warningFix
Fix override warning.
-rw-r--r-- | libsolidity/codegen/LValue.h | 2 |
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, |