| 2794 | /// This allows in-place construction |
| 2795 | template <typename... Args> |
| 2796 | Transformer(std::initializer_list<std::pair<std::string, std::string>> values, Args &&...args) |
| 2797 | : Transformer(TransformPairs<std::string>(values), std::forward<Args>(args)...) {} |
| 2798 | |
| 2799 | /// direct map of std::string to std::string |
| 2800 | template <typename T> |
nothing calls this directly
no test coverage detected