| 603 | */ |
| 604 | template <class T> |
| 605 | void config_set (const std::string &name, const T &value) |
| 606 | { |
| 607 | config_set (name, tl::to_string (value)); |
| 608 | } |
| 609 | |
| 610 | /** |
| 611 | * @brief Set a certain configuration parameter with a given type using a custom string converter |
no test coverage detected