Skip to content

Commit 8259d8f

Browse files
authored
Update 2024-03-21-setjmp-plus-longjmp-equals-goto-but-awesome.md
1 parent 0519b45 commit 8259d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2024-03-21-setjmp-plus-longjmp-equals-goto-but-awesome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The issue here is that it's extremely hard to tell where I forgot to paste it. I
6262

6363
# Returning a bool
6464

65-
Another option is letting every function return a `bool`, and using `__attribute__((warn_unused_result))` to let the compiler verify that the returned bool is used (normally in an if-statement):
65+
Another option is letting every function return a `bool`, and using `__attribute__((warn_unused_result))` to let the compiler verify that the returned bool is used in an if-statement:
6666

6767
```bettercpp
6868
__attribute__((warn_unused_result))

0 commit comments

Comments
 (0)