Moved catch_interfaces_runner.hpp out of conditionally compiled section

This commit is contained in:
Phil Nash 2012-06-02 23:12:42 +01:00
parent 6d1c11381e
commit 0f9c551d4d
2 changed files with 174 additions and 166 deletions

View file

@ -8,7 +8,7 @@
#ifndef TWOBLUECUBES_CATCH_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_HPP_INCLUDED
#include "internal/catch_test_case_info.hpp" // This needs to be here to prevent the single_include script ommitting it after the obj_c header
#include "internal/catch_context.h"
#include "internal/catch_test_registry.hpp"
#include "internal/catch_capture.hpp"
@ -18,6 +18,11 @@
#include "internal/catch_approx.hpp"
#include "internal/catch_matchers.hpp"
// These files are included here so the single_include script doesn't put them
// in the conditionally compiled sections
#include "internal/catch_test_case_info.hpp"
#include "internal/catch_interfaces_runner.h"
#ifdef __OBJC__
#include "internal/catch_objc.hpp"
#endif