| 4609 | public: |
| 4610 | |
| 4611 | RandomFloatingGenerator(Float a, Float b): |
| 4612 | m_rng(rng()), |
| 4613 | m_dist(a, b) { |
| 4614 | static_cast<void>(next()); |
| 4615 | } |
| 4616 | |
| 4617 | Float const& get() const override { |
| 4618 | return m_current_number; |
nothing calls this directly
no outgoing calls
no test coverage detected