| 504 | class keyref { |
| 505 | public: |
| 506 | keyref(Encoder &enc, slice key) :_enc(enc), _key(key) { } |
| 507 | template <class T> |
| 508 | inline void operator= (T value) {_enc.writeKey(_key); _enc << value;} |
| 509 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected