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! */
22// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/src, filename=simdutf.cpp
33/* begin file src/simdutf.cpp */
44#include "simdutf.h"
@@ -2063,8 +2063,7 @@ struct base16: base<simd16<T>> {
20632063 simdutf_really_inline base16(const __m256i _value) : base<simd16<T>>(_value) {}
20642064 template <typename Pointer>
20652065 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); }
20682067
20692068 /// the size of vector in bytes
20702069 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! */
22// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/include, filename=simdutf.h
33/* begin file include/simdutf.h */
44#ifndef SIMDUTF_H
@@ -574,7 +574,7 @@ SIMDUTF_DISABLE_UNDESIRED_WARNINGS
574574#define SIMDUTF_SIMDUTF_VERSION_H
575575
576576/** The version of simdutf being used (major.minor.revision) */
577- #define SIMDUTF_VERSION " 3.2.10 "
577+ #define SIMDUTF_VERSION " 3.2.11 "
578578
579579namespace simdutf {
580580enum {
@@ -589,7 +589,7 @@ enum {
589589 /**
590590 * The revision (major.minor.REVISION) of simdutf being used.
591591 */
592- SIMDUTF_VERSION_REVISION = 10
592+ SIMDUTF_VERSION_REVISION = 11
593593};
594594} // namespace simdutf
595595
You can’t perform that action at this time.
0 commit comments