Small updates to include directives (#1726)

Fixed some inconsistencies in include directives.
This commit is contained in:
Matthias Moulin 2019-09-08 14:25:23 +02:00 committed by Martin Hořeňovský
parent 923db16322
commit a5bb3e3d91
7 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
#include "internal/catch_interfaces_config.h"
#include "catch_interfaces_config.h"
namespace Catch {
IConfig::~IConfig() = default;

View File

@ -1,4 +1,4 @@
#include "internal/catch_interfaces_exception.h"
#include "catch_interfaces_exception.h"
namespace Catch {
IExceptionTranslator::~IExceptionTranslator() = default;

View File

@ -1,4 +1,4 @@
#include "internal/catch_interfaces_registry_hub.h"
#include "catch_interfaces_registry_hub.h"
namespace Catch {
IRegistryHub::~IRegistryHub() = default;

View File

@ -1,4 +1,4 @@
#include "internal/catch_interfaces_runner.h"
#include "catch_interfaces_runner.h"
namespace Catch {
IRunner::~IRunner() = default;

View File

@ -1,4 +1,4 @@
#include "internal/catch_interfaces_testcase.h"
#include "catch_interfaces_testcase.h"
namespace Catch {
ITestInvoker::~ITestInvoker() = default;

View File

@ -8,7 +8,7 @@
#include "catch_reporter_compact.h"
#include "../internal/catch_reporter_registrars.hpp"
#include "internal/catch_console_colour.h"
#include "../internal/catch_console_colour.h"
namespace {

View File

@ -9,7 +9,7 @@
#include "catch_reporter_console.h"
#include "../internal/catch_reporter_registrars.hpp"
#include "internal/catch_console_colour.h"
#include "../internal/catch_console_colour.h"
#include "../internal/catch_version.h"
#include "../internal/catch_text.h"
#include "../internal/catch_stringref.h"