Skip to content

Commit 2df6e99

Browse files
Removing ugly types.
1 parent 04c0cb3 commit 2df6e99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cppcon2025/cppcon_2025_slides.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,8 +610,8 @@ for (char c : str) {
610610

611611
**SIMD (16 bytes at once):**
612612
```cpp
613-
__m128i chunk = load_16_bytes(str);
614-
__m128i needs_escape = check_all_conditions_parallel(chunk);
613+
auto chunk = load_16_bytes(str);
614+
auto needs_escape = check_all_conditions_parallel(chunk);
615615
if (!needs_escape)
616616
return false; // Fast path!
617617
```

0 commit comments

Comments
 (0)