From b8b03da534ef6245c90698eff3123576b93162b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sun, 4 Apr 2021 13:35:38 +0200 Subject: [PATCH] Mangle doccoments to avoid breaking single include stitching --- include/internal/catch_fatal_condition.h | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/include/internal/catch_fatal_condition.h b/include/internal/catch_fatal_condition.h index 6b5f8f91..b5744f8f 100644 --- a/include/internal/catch_fatal_condition.h +++ b/include/internal/catch_fatal_condition.h @@ -16,16 +16,14 @@ namespace Catch { - /** - * Wrapper for platform-specific fatal error (signals/SEH) handlers - * - * Tries to be cooperative with other handlers, and not step over - * other handlers. This means that unknown structured exceptions - * are passed on, previous signal handlers are called, and so on. - * - * Can only be instantiated once, and assumes that once a signal - * is caught, the binary will end up terminating. Thus, there - */ + // Wrapper for platform-specific fatal error (signals/SEH) handlers + // + // Tries to be cooperative with other handlers, and not step over + // other handlers. This means that unknown structured exceptions + // are passed on, previous signal handlers are called, and so on. + // + // Can only be instantiated once, and assumes that once a signal + // is caught, the binary will end up terminating. Thus, there class FatalConditionHandler { bool m_started = false;