Closes #3301. Non-void function should not have empty definition.

This commit is contained in:
Simon 2018-05-23 21:04:51 -07:00
parent bae5adf0a4
commit 47db75426f
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ public:
BaseNote(uint64_t value) : value_(value) {};
virtual ~BaseNote() {};
virtual uint256 cm() const {};
virtual uint256 cm() const = 0;
inline uint64_t value() const { return value_; };
};