Skip to content

Commit 60d7046

Browse files
deps: update simdutf to 3.2.11
1 parent 1ba7ad7 commit 60d7046

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

deps/simdutf/simdutf.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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);

deps/simdutf/simdutf.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
579579
namespace simdutf {
580580
enum {
@@ -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

0 commit comments

Comments
 (0)