| 64 | return value; |
| 65 | } |
| 66 | inline boost::optional<internal_type> put_value(const external_type &v) const { |
| 67 | std::basic_ostringstream<Ch, Traits, Alloc> stream; |
| 68 | customizeA::insert(stream, v.first); |
| 69 | stream << " "; |
| 70 | customizeB::insert(stream, v.second); |
| 71 | if (stream) return stream.str(); |
| 72 | else return { }; |
| 73 | } |
| 74 | }; |
| 75 | template <typename Source, typename A, typename B> |
| 76 | struct get_pair_translator { |
nothing calls this directly
no outgoing calls
no test coverage detected