From 5150fa44761da7e04a320bc4c4dd662f31caf3ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sun, 26 Apr 2020 13:32:17 +0200 Subject: [PATCH] Rename catch_capture.hpp to more descriptive catch_test_macro_impl.hpp --- src/CMakeLists.txt | 2 +- src/catch2/catch_test_macros.hpp | 2 +- src/catch2/internal/catch_capture_matchers.hpp | 2 +- src/catch2/internal/catch_run_context.hpp | 2 +- src/catch2/internal/catch_section.cpp | 2 +- .../internal/{catch_capture.hpp => catch_test_macro_impl.hpp} | 0 src/catch2/reporters/catch_reporter_xml.cpp | 2 +- 7 files changed, 6 insertions(+), 6 deletions(-) rename src/catch2/internal/{catch_capture.hpp => catch_test_macro_impl.hpp} (100%) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 44e7d3ea..fdfe56a0 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -39,7 +39,7 @@ set(INTERNAL_HEADERS ${SOURCES_DIR}/internal/catch_assertionhandler.hpp ${SOURCES_DIR}/catch_assertion_info.hpp ${SOURCES_DIR}/catch_assertion_result.hpp - ${SOURCES_DIR}/internal/catch_capture.hpp + ${SOURCES_DIR}/internal/catch_test_macro_impl.hpp ${SOURCES_DIR}/internal/catch_clara.hpp ${SOURCES_DIR}/internal/catch_commandline.hpp ${SOURCES_DIR}/internal/catch_common.hpp diff --git a/src/catch2/catch_test_macros.hpp b/src/catch2/catch_test_macros.hpp index e323b396..335ba891 100644 --- a/src/catch2/catch_test_macros.hpp +++ b/src/catch2/catch_test_macros.hpp @@ -6,7 +6,7 @@ #ifndef TWOBLUECUBES_CATCH_TEST_MACROS_HPP_INCLUDED #define TWOBLUECUBES_CATCH_TEST_MACROS_HPP_INCLUDED -#include +#include #include #include #include diff --git a/src/catch2/internal/catch_capture_matchers.hpp b/src/catch2/internal/catch_capture_matchers.hpp index b66a25dd..0ec60bc2 100644 --- a/src/catch2/internal/catch_capture_matchers.hpp +++ b/src/catch2/internal/catch_capture_matchers.hpp @@ -5,7 +5,7 @@ #ifndef TWOBLUECUBES_CATCH_CAPTURE_MATCHERS_HPP_INCLUDED #define TWOBLUECUBES_CATCH_CAPTURE_MATCHERS_HPP_INCLUDED -#include +#include #include namespace Catch { diff --git a/src/catch2/internal/catch_run_context.hpp b/src/catch2/internal/catch_run_context.hpp index 9fd78324..ea72dde0 100644 --- a/src/catch2/internal/catch_run_context.hpp +++ b/src/catch2/internal/catch_run_context.hpp @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/src/catch2/internal/catch_section.cpp b/src/catch2/internal/catch_section.cpp index 9a542882..3652daf0 100644 --- a/src/catch2/internal/catch_section.cpp +++ b/src/catch2/internal/catch_section.cpp @@ -7,7 +7,7 @@ */ #include -#include +#include #include namespace Catch { diff --git a/src/catch2/internal/catch_capture.hpp b/src/catch2/internal/catch_test_macro_impl.hpp similarity index 100% rename from src/catch2/internal/catch_capture.hpp rename to src/catch2/internal/catch_test_macro_impl.hpp diff --git a/src/catch2/reporters/catch_reporter_xml.cpp b/src/catch2/reporters/catch_reporter_xml.cpp index d1d3279b..22053e85 100644 --- a/src/catch2/reporters/catch_reporter_xml.cpp +++ b/src/catch2/reporters/catch_reporter_xml.cpp @@ -8,7 +8,7 @@ #include -#include +#include #include #include #include