| 116 | struct axis_visitor : public boost::static_visitor<bp::object> { |
| 117 | template <typename T> |
| 118 | bp::object operator()(const T& t) const { |
| 119 | return bp::object(t); |
| 120 | } |
| 121 | }; |
| 122 | |
| 123 | struct axes_appender { |
nothing calls this directly
no outgoing calls
no test coverage detected