diff --git a/ClockReceiver/Dispatcher.hpp b/ClockReceiver/Dispatcher.hpp index 2773c6c55..e96ac97b7 100644 --- a/ClockReceiver/Dispatcher.hpp +++ b/ClockReceiver/Dispatcher.hpp @@ -21,8 +21,8 @@ struct UnitConverter { template struct Dispatcher { - /// Perform @c target.perform() for the input range [start, end]; @c ConverterT()(n) will be applied to - /// each individual step before it becomes the relevant template argument. + /// Perform @c target.perform() for the input range `start <= n < end`; + /// @c ConverterT()(n) will be applied to each individual step before it becomes the relevant template argument. void dispatch(SequencerT &target, int start, int end) { // Minor optimisation: do a comparison with end once outside the loop and if it implies so @@ -45,11 +45,16 @@ private: // // Sensible choices by the optimiser are assumed. -#define index(n) \ - if constexpr (n == max) return; \ - if(use_end && end == n) return; \ - [[fallthrough]]; \ - case n: target.template perform(); +#define index(n) \ + case n: \ + if constexpr (n <= max) { \ + if constexpr (n == max) return; \ + if constexpr (n < max) { \ + if(use_end && end == n) return; \ + } \ + target.template perform(); \ + } \ + [[fallthrough]]; #define index2(n) index(n); index(n+1); #define index4(n) index2(n); index2(n+2);