From f5668fafd9885062c6a8ff116f8a874f849d841f Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Thu, 2 Jun 2011 08:49:47 +0100 Subject: [PATCH] Made #include paths from reporters relative (again) --- include/reporters/catch_reporter_basic.hpp | 6 +++--- include/reporters/catch_reporter_junit.hpp | 8 ++++---- include/reporters/catch_reporter_xml.hpp | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/include/reporters/catch_reporter_basic.hpp b/include/reporters/catch_reporter_basic.hpp index 9bde2297..78de2e56 100644 --- a/include/reporters/catch_reporter_basic.hpp +++ b/include/reporters/catch_reporter_basic.hpp @@ -12,9 +12,9 @@ #ifndef TWOBLUECUBES_CATCH_REPORTER_BASIC_HPP_INCLUDED #define TWOBLUECUBES_CATCH_REPORTER_BASIC_HPP_INCLUDED -#include "internal/catch_capture.hpp" -#include "internal/catch_interfaces_reporter.h" -#include "internal/catch_reporter_registrars.hpp" +#include "../internal/catch_capture.hpp" +#include "../internal/catch_interfaces_reporter.h" +#include "../internal/catch_reporter_registrars.hpp" namespace Catch { diff --git a/include/reporters/catch_reporter_junit.hpp b/include/reporters/catch_reporter_junit.hpp index aa22b586..6dbc4bf3 100644 --- a/include/reporters/catch_reporter_junit.hpp +++ b/include/reporters/catch_reporter_junit.hpp @@ -12,10 +12,10 @@ #ifndef TWOBLUECUBES_CATCH_REPORTER_JUNIT_HPP_INCLUDED #define TWOBLUECUBES_CATCH_REPORTER_JUNIT_HPP_INCLUDED -#include "internal/catch_capture.hpp" -#include "internal/catch_interfaces_reporter.h" -#include "internal/catch_reporter_registrars.hpp" -#include "internal/catch_xmlwriter.hpp" +#include "../internal/catch_capture.hpp" +#include "../internal/catch_interfaces_reporter.h" +#include "../internal/catch_reporter_registrars.hpp" +#include "../internal/catch_xmlwriter.hpp" namespace Catch { diff --git a/include/reporters/catch_reporter_xml.hpp b/include/reporters/catch_reporter_xml.hpp index fd303880..141ed419 100644 --- a/include/reporters/catch_reporter_xml.hpp +++ b/include/reporters/catch_reporter_xml.hpp @@ -12,10 +12,10 @@ #ifndef TWOBLUECUBES_CATCH_REPORTER_XML_HPP_INCLUDED #define TWOBLUECUBES_CATCH_REPORTER_XML_HPP_INCLUDED -#include "internal/catch_capture.hpp" -#include "internal/catch_interfaces_reporter.h" -#include "internal/catch_reporter_registrars.hpp" -#include "internal/catch_xmlwriter.hpp" +#include "../internal/catch_capture.hpp" +#include "../internal/catch_interfaces_reporter.h" +#include "../internal/catch_reporter_registrars.hpp" +#include "../internal/catch_xmlwriter.hpp" namespace Catch {