@@ -24,6 +24,7 @@ Cpptrace also has a C API, docs [here](docs/c-api.md).
24
24
- [ Raw Traces] ( #raw-traces )
25
25
- [ Utilities] ( #utilities )
26
26
- [ Formatting] ( #formatting )
27
+ - [ Transforms] ( #transforms )
27
28
- [ Configuration] ( #configuration )
28
29
- [ Traces From All Exceptions] ( #traces-from-all-exceptions )
29
30
- [ Removing the ` CPPTRACE_ ` prefix] ( #removing-the-cpptrace_-prefix )
@@ -37,6 +38,7 @@ Cpptrace also has a C API, docs [here](docs/c-api.md).
37
38
- [ Utility Types] ( #utility-types )
38
39
- [ Headers] ( #headers )
39
40
- [ Libdwarf Tuning] ( #libdwarf-tuning )
41
+ - [ JIT Support] ( #jit-support )
40
42
- [ Supported Debug Formats] ( #supported-debug-formats )
41
43
- [ How to Include The Library] ( #how-to-include-the-library )
42
44
- [ CMake FetchContent] ( #cmake-fetchcontent )
@@ -402,7 +404,7 @@ namespace cpptrace {
402
404
}
403
405
```
404
406
405
- ### Transforming
407
+ ### Transforms
406
408
407
409
A transform function can be specified for the formatter. This function is called before the configured ` filter ` is
408
410
checked. For example:
@@ -415,7 +417,6 @@ auto formatter = cpptrace::formatter{}
415
417
});
416
418
```
417
419
418
-
419
420
## Configuration
420
421
421
422
`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.
867
868
| `cpptrace/formatting.hpp` | Configurable formatter API |
868
869
| `cpptrace/utils.hpp` | Utility functions, configuration functions, and terminate utilities ([Utilities](#utilities), [Configuration](#configuration), and [Terminate Handling](#terminate-handling)) |
869
870
| `cpptrace/version.hpp` | Library version macros |
871
+ | `cpptrace/gdb_jit.hpp` | Provides a special utility related to [JIT support](#jit-support) |
870
872
871
873
The main cpptrace header is `cpptrace/cpptrace.hpp` which includes everything other than `from_current.hpp` and
872
874
`version.hpp`.
0 commit comments