Skip to content

Commit 7f5b98c

Browse files
deploy: 2df6e99
1 parent 4de617a commit 7f5b98c

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

cppcon2025/cppcon_2025_slides.html

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

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
```

cppcon2025/cppcon_2025_slides.pdf

-77 Bytes
Binary file not shown.

cppcon2025/presentation.pdf

-3 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)