nohead
| 994 | |
| 995 | // nohead |
| 996 | static void encode_nohead(const container& s, ceph::buffer::list::contiguous_appender& p, |
| 997 | uint64_t f = 0) { |
| 998 | for (const T& e : s) { |
| 999 | if constexpr (traits::featured) { |
| 1000 | denc(e, p, f); |
| 1001 | } else { |
| 1002 | denc(e, p); |
| 1003 | } |
| 1004 | } |
| 1005 | } |
| 1006 | static void decode_nohead(size_t num, container& s, |
| 1007 | ceph::buffer::ptr::const_iterator& p, |
| 1008 | uint64_t f=0) { |