| 410 | /** Helper to process a single ClientID argument. */ |
| 411 | template <class T> |
| 412 | static inline void SetClientIdHelper(T &data, [[maybe_unused]] ClientID client_id) |
| 413 | { |
| 414 | if constexpr (std::is_same_v<ClientID, T>) { |
| 415 | data = client_id; |
| 416 | } |
| 417 | } |
| 418 | |
| 419 | /** Set all invalid ClientID's to the proper value. */ |
| 420 | template <class Ttuple, size_t... Tindices> |
no outgoing calls
no test coverage detected