From 8b84438be436946a2cccc01abcd3ba4a10005c1e Mon Sep 17 00:00:00 2001 From: Sergio Arroutbi Date: Wed, 30 Nov 2022 17:05:44 +0100 Subject: [PATCH] Avoid usage of master when possible Signed-off-by: Sergio Arroutbi --- Doxyfile | 2 +- docs/limitations.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doxyfile b/Doxyfile index 68318416..07b385ec 100644 --- a/Doxyfile +++ b/Doxyfile @@ -1319,7 +1319,7 @@ CHM_FILE = HHC_LOCATION = # The GENERATE_CHI flag controls if a separate .chi index file is generated -# (YES) or that it should be included in the master .chm file (NO). +# (YES) or that it should be included in the main .chm file (NO). # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. diff --git a/docs/limitations.md b/docs/limitations.md index 80471865..4bcd4de8 100644 --- a/docs/limitations.md +++ b/docs/limitations.md @@ -155,7 +155,7 @@ with expansion: ### Clang/G++ -- skipping leaf sections after an exception -Some versions of `libc++` and `libstdc++` (or their runtimes) have a bug with `std::uncaught_exception()` getting stuck returning `true` after rethrow, even if there are no active exceptions. One such case is this snippet, which skipped the sections "a" and "b", when compiled against `libcxxrt` from master +Some versions of `libc++` and `libstdc++` (or their runtimes) have a bug with `std::uncaught_exception()` getting stuck returning `true` after rethrow, even if there are no active exceptions. One such case is this snippet, which skipped the sections "a" and "b", when compiled against `libcxxrt` from the master branch ```cpp #include