Re-ordered Obj-C headers to fix dependency issue

This commit is contained in:
Phil Nash 2011-08-12 18:52:10 +01:00
parent d474d8dcd8
commit 8350ef6366
1 changed files with 4 additions and 4 deletions

View File

@ -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" )