| 125 | pyhistogram::axes_type& axes; |
| 126 | bool& success; |
| 127 | axes_appender(bp::object o, pyhistogram::axes_type& a, bool& s) |
| 128 | : obj(o), axes(a), success(s) {} |
| 129 | template <typename A> |
| 130 | void operator()(const A&) const { |
| 131 | if (success) return; |
nothing calls this directly
no outgoing calls
no test coverage detected