| 28 | ////////// |
| 29 | // Specialization for converting a string to a string. |
| 30 | template <> inline std::string fromstring<std::string>(const std::string s) |
| 31 | { |
| 32 | return s; |
| 33 | } |
| 34 | |
| 35 | ////////// |
| 36 | // Converts a string to a vector of type T, separated at sep |
nothing calls this directly
no outgoing calls
no test coverage detected