| 463 | /** Helper function to perform validation on command data strings. */ |
| 464 | template <class Ttuple, size_t... Tindices> |
| 465 | static inline void SanitizeStringsHelper(CommandFlags cmd_flags, Ttuple &values, std::index_sequence<Tindices...>) |
| 466 | { |
| 467 | ((SanitizeSingleStringHelper(cmd_flags, std::get<Tindices>(values))), ...); |
| 468 | } |
| 469 | |
| 470 | /** |
| 471 | * Validate and sanitize strings in command data. |
no test coverage detected