From c1bb699d45fd3e6eb349525110983b61d4a936a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Thu, 13 Aug 2020 14:41:47 +0200 Subject: [PATCH] Remove superfluous catch_reporter_registrars.hpp includes from reporters The includes were an artifact of the old design where the built-in reporter TUs used autoregistration to add the reporters to the factory. Because the current design is to add them explicitly in the central reporter factory TU, the includes are useless. --- src/catch2/reporters/catch_reporter_console.cpp | 1 - src/catch2/reporters/catch_reporter_junit.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/src/catch2/reporters/catch_reporter_console.cpp b/src/catch2/reporters/catch_reporter_console.cpp index 2924c920..5e64e75d 100644 --- a/src/catch2/reporters/catch_reporter_console.cpp +++ b/src/catch2/reporters/catch_reporter_console.cpp @@ -10,7 +10,6 @@ #include #include -#include #include #include #include diff --git a/src/catch2/reporters/catch_reporter_junit.cpp b/src/catch2/reporters/catch_reporter_junit.cpp index 3b8e2e9a..ff679e71 100644 --- a/src/catch2/reporters/catch_reporter_junit.cpp +++ b/src/catch2/reporters/catch_reporter_junit.cpp @@ -12,7 +12,6 @@ #include #include -#include #include #include #include