| 37 | extern int g_replicationdebug; |
| 38 | |
| 39 | struct AttribKey { |
| 40 | int _id; |
| 41 | explicit AttribKey() : _id(-1) {} |
| 42 | explicit AttribKey(int id) : _id(id) {} |
| 43 | bool operator==(AttribKey const& source) const { return _id == source._id; } |
| 44 | bool operator<(AttribKey const& source) const { return _id < source._id; } |
| 45 | }; |
| 46 | struct AttribValue { |
| 47 | int _id; |
| 48 | explicit AttribValue() : _id(-1) {} |
no outgoing calls
no test coverage detected