| 72 | |
| 73 | template <typename A, typename S> |
| 74 | histogram<A, S> operator/(const histogram<A, S>& a, const double x) { |
| 75 | auto r = a; |
| 76 | r /= x; |
| 77 | return r; |
| 78 | } |
| 79 | |
| 80 | } // namespace histogram |
| 81 | } // namespace boost |
nothing calls this directly
no outgoing calls
no test coverage detected