Skip to content

Commit 3a89b9e

Browse files
committed
Updates and tweaks
1 parent 561156e commit 3a89b9e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Cpptrace also has a C API, docs [here](docs/c-api.md).
2424
- [Raw Traces](#raw-traces)
2525
- [Utilities](#utilities)
2626
- [Formatting](#formatting)
27+
- [Transforms](#transforms)
2728
- [Configuration](#configuration)
2829
- [Traces From All Exceptions](#traces-from-all-exceptions)
2930
- [Removing the `CPPTRACE_` prefix](#removing-the-cpptrace_-prefix)
@@ -37,6 +38,7 @@ Cpptrace also has a C API, docs [here](docs/c-api.md).
3738
- [Utility Types](#utility-types)
3839
- [Headers](#headers)
3940
- [Libdwarf Tuning](#libdwarf-tuning)
41+
- [JIT Support](#jit-support)
4042
- [Supported Debug Formats](#supported-debug-formats)
4143
- [How to Include The Library](#how-to-include-the-library)
4244
- [CMake FetchContent](#cmake-fetchcontent)
@@ -402,7 +404,7 @@ namespace cpptrace {
402404
}
403405
```
404406

405-
### Transforming
407+
### Transforms
406408

407409
A transform function can be specified for the formatter. This function is called before the configured `filter` is
408410
checked. For example:
@@ -415,7 +417,6 @@ auto formatter = cpptrace::formatter{}
415417
});
416418
```
417419
418-
419420
## Configuration
420421
421422
`cpptrace::absorb_trace_exceptions`: Configure whether the library silently absorbs internal exceptions and continues.
@@ -867,6 +868,7 @@ Cpptrace provides a handful of headers to make inclusion more minimal.
867868
| `cpptrace/formatting.hpp` | Configurable formatter API |
868869
| `cpptrace/utils.hpp` | Utility functions, configuration functions, and terminate utilities ([Utilities](#utilities), [Configuration](#configuration), and [Terminate Handling](#terminate-handling)) |
869870
| `cpptrace/version.hpp` | Library version macros |
871+
| `cpptrace/gdb_jit.hpp` | Provides a special utility related to [JIT support](#jit-support) |
870872
871873
The main cpptrace header is `cpptrace/cpptrace.hpp` which includes everything other than `from_current.hpp` and
872874
`version.hpp`.

0 commit comments

Comments
 (0)