We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04c0cb3 commit 2df6e99Copy full SHA for 2df6e99
1 file changed
cppcon2025/cppcon_2025_slides.md
@@ -610,8 +610,8 @@ for (char c : str) {
610
611
**SIMD (16 bytes at once):**
612
```cpp
613
-__m128i chunk = load_16_bytes(str);
614
-__m128i needs_escape = check_all_conditions_parallel(chunk);
+auto chunk = load_16_bytes(str);
+auto needs_escape = check_all_conditions_parallel(chunk);
615
if (!needs_escape)
616
return false; // Fast path!
617
```
0 commit comments