From 5208f348d95058b8051ba57e1f7ea7a9c9144ce0 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Sat, 6 Dec 2025 00:52:42 +0000 Subject: [PATCH] Update README.md FAQ about C++23 stacktrace The stacktrace-from-exceptions feature is not in C++26. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5cc49c91..cbcfcbe2 100644 --- a/README.md +++ b/README.md @@ -1727,7 +1727,8 @@ Cpptrace provides functionality beyond what the standard library provides and wh - Providing traced exception objects - Providing an API for signal-safe stacktrace generation - Providing a way to retrieve stack traces from arbitrary exceptions, not just special cpptrace traced exception - objects. This is a feature coming to C++26, but cpptrace provides a solution for C++11. + objects. This is a feature that has been proposed for a future version of the C++ standard, + but cpptrace provides a solution for C++11. ## What does cpptrace have over other C++ stacktrace libraries?