From 8350ef63667b76e199cae510e229bdc4565e0dc5 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Fri, 12 Aug 2011 18:52:10 +0100 Subject: [PATCH] Re-ordered Obj-C headers to fix dependency issue --- include/catch.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/catch.hpp b/include/catch.hpp index 5a297ede..0b0bb62c 100644 --- a/include/catch.hpp +++ b/include/catch.hpp @@ -29,6 +29,10 @@ #include "internal/catch_interfaces_exception.h" #include "internal/catch_approx.hpp" +#ifdef __OBJC__ +#include "internal/catch_objc.hpp" +#endif + #if defined( CATCH_CONFIG_MAIN ) || defined( CATCH_CONFIG_RUNNER ) #include "catch_runner.hpp" #endif @@ -37,10 +41,6 @@ #include "internal/catch_default_main.hpp" #endif -#ifdef __OBJC__ -#include "internal/catch_objc.hpp" -#endif - ////// #define REQUIRE( expr ) INTERNAL_CATCH_TEST( expr, false, true, "REQUIRE" )