Skip to content

Commit 03ce6f9

Browse files
Removing implementation related comment that is not useful for the
audience.
1 parent 9346f7d commit 03ce6f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cppcon2025/cppcon_2025_slides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1068,7 +1068,7 @@ How Fast Digit Counting Works
10681068

10691069
The Problem: Need to know buffer size before converting number to string
10701070

1071-
Traditional Approach (Disabled by NO_FAST_DIGITS):
1071+
Traditional Approach:
10721072
size_t digit_count(uint64_t v) {
10731073
return std::to_string(v).length();
10741074
// 1. Allocates memory

0 commit comments

Comments
 (0)