| 51 | template <int index, typename... Args> |
| 52 | requires(index == sizeof...(Args)) |
| 53 | inline void write_tuple(const std::tuple<Args...>&, const buffer_t&, int64_t) |
| 54 | { |
| 55 | /// Intentionally empty. |
| 56 | } |
| 57 | |
| 58 | template <int index, typename... Args> |
| 59 | requires(index < sizeof...(Args)) |