Skip to content

Commit 829f858

Browse files
authored
Update 2025-11-30-comptime-c-functions.md
1 parent 7480d45 commit 829f858

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2025-11-30-comptime-c-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ date: 2025-11-29 12:00:00 +0100
66

77
Compile-time function execution is great, but what if:
88
1. You're stuck with C.
9-
2. You don't want to use evil C macros.
9+
2. You don't want to use evil C macros, which are debugging nightmares.
1010
3. You want generic data structures that work for all types.
1111

1212
The below data structure showcase programs get optimized away at compile time by Clang and GCC, such that only the `printf()` at the end of `main()` is left:

0 commit comments

Comments
 (0)