| 69 | } |
| 70 | |
| 71 | uint32_t writeTo(Encoder &enc, bool writeKey) { |
| 72 | if (writeKey) |
| 73 | enc.writeString(_key); |
| 74 | else |
| 75 | enc.writeValue(_value); |
| 76 | return (uint32_t)enc.finishItem(); |
| 77 | } |
| 78 | |
| 79 | void dump(std::ostream &out, unsigned indent) { |
| 80 | char hashStr[30]; |
no test coverage detected