@@ -535,7 +535,7 @@ struct ReservoirHandler : ResultHandlerCompare<C, with_id_map> {
535
535
}
536
536
};
537
537
538
- /* * Result hanlder for range search. The difficulty is that the range distances
538
+ /* * Result handler for range search. The difficulty is that the range distances
539
539
* have to be scaled using the scaler.
540
540
*/
541
541
@@ -713,7 +713,7 @@ struct PartialRangeHandler : RangeHandler<C, with_id_map> {
713
713
*/
714
714
715
715
template <class C , bool W, class Consumer , class ... Types>
716
- void dispatch_SIMDResultHanlder_fixedCW (
716
+ void dispatch_SIMDResultHandler_fixedCW (
717
717
SIMDResultHandler& res,
718
718
Consumer& consumer,
719
719
Types... args) {
@@ -733,19 +733,19 @@ void dispatch_SIMDResultHanlder_fixedCW(
733
733
}
734
734
735
735
template <class C , class Consumer , class ... Types>
736
- void dispatch_SIMDResultHanlder_fixedC (
736
+ void dispatch_SIMDResultHandler_fixedC (
737
737
SIMDResultHandler& res,
738
738
Consumer& consumer,
739
739
Types... args) {
740
740
if (res.with_fields ) {
741
- dispatch_SIMDResultHanlder_fixedCW <C, true >(res, consumer, args...);
741
+ dispatch_SIMDResultHandler_fixedCW <C, true >(res, consumer, args...);
742
742
} else {
743
- dispatch_SIMDResultHanlder_fixedCW <C, false >(res, consumer, args...);
743
+ dispatch_SIMDResultHandler_fixedCW <C, false >(res, consumer, args...);
744
744
}
745
745
}
746
746
747
747
template <class Consumer , class ... Types>
748
- void dispatch_SIMDResultHanlder (
748
+ void dispatch_SIMDResultHandler (
749
749
SIMDResultHandler& res,
750
750
Consumer& consumer,
751
751
Types... args) {
@@ -763,18 +763,18 @@ void dispatch_SIMDResultHanlder(
763
763
}
764
764
} else if (res.sizeof_ids == sizeof (int )) {
765
765
if (res.is_CMax ) {
766
- dispatch_SIMDResultHanlder_fixedC <CMax<uint16_t , int >>(
766
+ dispatch_SIMDResultHandler_fixedC <CMax<uint16_t , int >>(
767
767
res, consumer, args...);
768
768
} else {
769
- dispatch_SIMDResultHanlder_fixedC <CMin<uint16_t , int >>(
769
+ dispatch_SIMDResultHandler_fixedC <CMin<uint16_t , int >>(
770
770
res, consumer, args...);
771
771
}
772
772
} else if (res.sizeof_ids == sizeof (int64_t )) {
773
773
if (res.is_CMax ) {
774
- dispatch_SIMDResultHanlder_fixedC <CMax<uint16_t , int64_t >>(
774
+ dispatch_SIMDResultHandler_fixedC <CMax<uint16_t , int64_t >>(
775
775
res, consumer, args...);
776
776
} else {
777
- dispatch_SIMDResultHanlder_fixedC <CMin<uint16_t , int64_t >>(
777
+ dispatch_SIMDResultHandler_fixedC <CMin<uint16_t , int64_t >>(
778
778
res, consumer, args...);
779
779
}
780
780
} else {
0 commit comments