Add C output to mkworld.

This commit is contained in:
Adam Ierymenko 2015-10-13 08:55:21 -07:00
parent cae58f43f1
commit 05677f57e2
3 changed files with 19 additions and 1 deletions

View file

@ -225,7 +225,7 @@ public:
return (p - startAt);
}
inline bool operator==(const World &w) const throw() { return ((_id == w._id)&&(_ts == w._ts)&&(_roots == w._roots)); }
inline bool operator==(const World &w) const throw() { return ((_id == w._id)&&(_ts == w._ts)&&(_updateSigningKey == w._updateSigningKey)&&(_signature == w._signature)&&(_roots == w._roots)); }
inline bool operator!=(const World &w) const throw() { return (!(*this == w)); }
protected: