Skip to content

Commit

Permalink
update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd committed Jun 26, 2024
1 parent cbcf104 commit 26fabc4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@
or disable this feature through the backend options by modifying the `check_printable_char` callback
in `BackendOptions`.

```c++
std::function<bool(char c)> check_printable_char = [](char c) { return c >= ' ' && c <= '~'; };
```
- Added `StringRef`, a utility for passing string arguments by reference without copying. Suitable for string literals
or immutable strings with a guaranteed persistent lifetime. For example
Expand Down

0 comments on commit 26fabc4

Please sign in to comment.