File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
- /* auto-generated on 2023-05-22 13:05:15 -0400. Do not edit! */
1
+ /* auto-generated on 2023-05-22 13:06:02 -0400. Do not edit! */
2
2
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/src, filename=simdutf.cpp
3
3
/* begin file src/simdutf.cpp */
4
4
#include "simdutf.h"
@@ -2063,8 +2063,7 @@ struct base16: base<simd16<T>> {
2063
2063
simdutf_really_inline base16(const __m256i _value) : base<simd16<T>>(_value) {}
2064
2064
template <typename Pointer>
2065
2065
simdutf_really_inline base16(const Pointer* ptr) : base16(_mm256_loadu_si256(reinterpret_cast<const __m256i*>(ptr))) {}
2066
-
2067
- simdutf_really_inline Mask operator==(const simd16<T> other) const { return _mm256_cmpeq_epi16(*this, other); }
2066
+ friend simdutf_really_inline Mask operator==(const simd16<T> lhs, const simd16<T> rhs) { return _mm256_cmpeq_epi16(lhs, rhs); }
2068
2067
2069
2068
/// the size of vector in bytes
2070
2069
static const int SIZE = sizeof(base<simd16<T>>::value);
Original file line number Diff line number Diff line change 1
- /* auto-generated on 2023-05-22 13:05:15 -0400. Do not edit! */
1
+ /* auto-generated on 2023-05-22 13:06:02 -0400. Do not edit! */
2
2
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/include, filename=simdutf.h
3
3
/* begin file include/simdutf.h */
4
4
#ifndef SIMDUTF_H
@@ -574,7 +574,7 @@ SIMDUTF_DISABLE_UNDESIRED_WARNINGS
574
574
#define SIMDUTF_SIMDUTF_VERSION_H
575
575
576
576
/** The version of simdutf being used (major.minor.revision) */
577
- #define SIMDUTF_VERSION " 3.2.10 "
577
+ #define SIMDUTF_VERSION " 3.2.11 "
578
578
579
579
namespace simdutf {
580
580
enum {
@@ -589,7 +589,7 @@ enum {
589
589
/**
590
590
* The revision (major.minor.REVISION) of simdutf being used.
591
591
*/
592
- SIMDUTF_VERSION_REVISION = 10
592
+ SIMDUTF_VERSION_REVISION = 11
593
593
};
594
594
} // namespace simdutf
595
595
You can’t perform that action at this time.
0 commit comments