diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-10-13 08:55:21 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-10-13 08:55:21 -0700 |
commit | 05677f57e2e6bed58467198f4e65b68a236b00c2 (patch) | |
tree | 0d42268310c1b00ee2dc764bea5625180aa3b70b /node/World.hpp | |
parent | cae58f43f1b18017b90499811772d107ea2f65b9 (diff) | |
download | infinitytier-05677f57e2e6bed58467198f4e65b68a236b00c2.tar.gz infinitytier-05677f57e2e6bed58467198f4e65b68a236b00c2.zip |
Add C output to mkworld.
Diffstat (limited to 'node/World.hpp')
-rw-r--r-- | node/World.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/World.hpp b/node/World.hpp index 7ccd2c53..c6d20d84 100644 --- a/node/World.hpp +++ b/node/World.hpp @@ -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: |