| 118 | |
| 119 | namespace { |
| 120 | int regular_function_sum(int a, int b) |
| 121 | { |
| 122 | return a + b; |
| 123 | } |
| 124 | |
| 125 | template <unsigned int N, typename... Args> |
| 126 | auto return_n_arg_type(Args&&... args) -> typename std::tuple_element<N, std::tuple<Args...>>::type |
nothing calls this directly
no outgoing calls
no test coverage detected