1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-04-27 19:35:43 +02:00

Fix missing include causing compiler error

catch_registry_hub.cpp:65:17: error: use of undeclared identifier 'CATCH_INTERNAL_ERROR'
                CATCH_INTERNAL_ERROR("Attempted to register active exception under CATCH_CONFIG_DISABLE_EXCEPTIONS!");
This commit is contained in:
Martin Sternevald 2022-12-10 12:44:09 +01:00 committed by Martin Hořeňovský
parent 20ace55034
commit c359076e8a

@ -9,6 +9,7 @@
#include "catch_interfaces_registry_hub.h"
#include "catch_context.h"
#include "catch_enforce.h"
#include "catch_test_case_registry_impl.h"
#include "catch_reporter_registry.h"
#include "catch_exception_translator_registry.h"