Template instantiation reflection inline std::string reflect_template(std::vector const& args) {
| 1001 | // Template instantiation reflection |
| 1002 | // inline std::string reflect_template(std::vector<std::string> const& args) { |
| 1003 | inline std::string reflect_template( |
| 1004 | jitify::detail::vector<std::string> const& args) { |
| 1005 | // Note: The space in " >" is a WAR to avoid '>>' appearing |
| 1006 | return reflect_list(args, "<", " >"); |
| 1007 | } |
| 1008 | // TODO: See if can make this evaluate completely at compile-time |
| 1009 | template <typename... Ts> |
| 1010 | inline std::string reflect_template() { |
no test coverage detected