Skip to content

Commit 5bb1b06

Browse files
committed
ignore unused variable
1 parent 163fc13 commit 5bb1b06

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

extras/rapidfuzz_amalgamated.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
22
// SPDX-License-Identifier: MIT
33
// RapidFuzz v1.0.2
4-
// Generated: 2023-10-31 11:32:43.133377
4+
// Generated: 2023-10-31 11:48:55.108653
55
// ----------------------------------------------------------
66
// This file is an amalgamation of multiple different files.
77
// You probably shouldn't edit it directly.
@@ -5715,7 +5715,7 @@ static inline auto jaro_similarity_prepare_bound_short_s2(const VecType* s1_leng
57155715
using namespace simd_sse2;
57165716
# endif
57175717

5718-
static constexpr size_t alignment = native_simd<VecType>::alignment;
5718+
[[maybe_unused]] static constexpr size_t alignment = native_simd<VecType>::alignment;
57195719
static constexpr size_t vec_width = native_simd<VecType>::size;
57205720
assert(static_cast<size_t>(s2.size()) <= sizeof(VecType) * 8);
57215721

rapidfuzz/distance/Jaro_impl.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ static inline auto jaro_similarity_prepare_bound_short_s2(const VecType* s1_leng
474474
using namespace simd_sse2;
475475
# endif
476476

477-
static constexpr size_t alignment = native_simd<VecType>::alignment;
477+
[[maybe_unused]] static constexpr size_t alignment = native_simd<VecType>::alignment;
478478
static constexpr size_t vec_width = native_simd<VecType>::size;
479479
assert(static_cast<size_t>(s2.size()) <= sizeof(VecType)*8);
480480

0 commit comments

Comments
 (0)