Skip to content

Commit d206ed3

Browse files
Fixing return type (small detail)
1 parent b3884eb commit d206ed3

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
@@ -897,7 +897,7 @@ On first call, `get_sum_fnc()` is modified, and then it will remain constant.
897897
898898
899899
```Cpp
900-
simple_needs_escaping(std::string_view v) {
900+
bool simple_needs_escaping(std::string_view v) {
901901
for (unsigned char c : v) {
902902
if(json_quotable_character[c]) { return true; }
903903
}

0 commit comments

Comments
 (0)