Auto merge of #3302 - bitcartel:3301_fix_mac_compile_error, r=str4d

Closes #3301. Non-void function should not have empty definition.
This commit is contained in:
Homu 2018-05-24 17:03:42 -07:00
commit 088353ab02
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_; };
};