| 1650 | /// function template for converting tuples if the static Index is greater than the tuple size |
| 1651 | template <class AssignTo, class ConvertTo, std::size_t I> |
| 1652 | inline typename std::enable_if<(I >= type_count_base<AssignTo>::value), bool>::type |
| 1653 | tuple_conversion(const std::vector<std::string> &, AssignTo &) { |
| 1654 | return true; |
| 1655 | } |
| 1656 | |
| 1657 | /// Conversion of a tuple element where the type size ==1 and not a mutable container |
| 1658 | template <class AssignTo, class ConvertTo> |
nothing calls this directly
no outgoing calls
no test coverage detected