| 139 | |
| 140 | template <typename U> |
| 141 | struct get_allocator_visitor : public boost::static_visitor<U> { |
| 142 | template <typename T> |
| 143 | U operator()(const T& t) const { |
| 144 | return t.get_allocator(); |
| 145 | } |
| 146 | }; |
| 147 | |
| 148 | } // namespace detail |
| 149 |
nothing calls this directly
no outgoing calls
no test coverage detected