diff options
author | Paweł Bylica <chfast@gmail.com> | 2015-06-08 18:13:44 +0800 |
---|---|---|
committer | Paweł Bylica <chfast@gmail.com> | 2015-06-08 18:13:44 +0800 |
commit | 8061002b9cda8b5741bcbbb4248b1369bd10eb29 (patch) | |
tree | 72a5ae6e2d63b1653669d1d8a34f86b7d215bd73 /AST.h | |
parent | cddceb2b4f77e828a5ef5aa218e36afeef7bb30b (diff) | |
download | dexon-solidity-8061002b9cda8b5741bcbbb4248b1369bd10eb29.tar.gz dexon-solidity-8061002b9cda8b5741bcbbb4248b1369bd10eb29.tar.zst dexon-solidity-8061002b9cda8b5741bcbbb4248b1369bd10eb29.zip |
Add missing override specifiers.
Diffstat (limited to 'AST.h')
-rw-r--r-- | AST.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -503,7 +503,7 @@ public: /// Returns the declared or inferred type. Can be an empty pointer if no type was explicitly /// declared and there is no assignment to the variable that fixes the type. - TypePointer getType(ContractDefinition const* = nullptr) const { return m_type; } + TypePointer getType(ContractDefinition const* = nullptr) const override { return m_type; } void setType(std::shared_ptr<Type const> const& _type) { m_type = _type; } virtual bool isLValue() const override; |