Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cbielow committed Aug 21, 2023
1 parent 8da84c8 commit 81cdab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openms/source/DATASTRUCTURES/StringUtilsSimple.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ namespace OpenMS
simde__m128i x = simde_mm_cmpeq_epi8(s, w0);
x = simde_mm_or_si128(x, simde_mm_cmpeq_epi8(s, w1));
simde__m128i y = simde_mm_cmpeq_epi8(s, w2);
y = simde_mm_or_si128(x, simde_mm_cmpeq_epi8(s, w3));
y = simde_mm_or_si128(y, simde_mm_cmpeq_epi8(s, w3));
x = simde_mm_or_si128(x, y);
// convert to a 16-bit int (i.e any spaces will be '1')
// (do not try to convert first and then invert -- not the same!)
Expand Down

0 comments on commit 81cdab1

Please sign in to comment.