1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-04-27 19:35:43 +02:00

Use MFCs windows include if present

This commit is contained in:
Phil Nash 2013-07-01 18:44:40 +01:00
parent 4b5e008b20
commit ba9b2b5a37

@ -22,7 +22,12 @@ namespace Catch { namespace Detail {
#ifndef NOMINMAX
#define NOMINMAX
#endif
#ifdef __AFXDLL
#include <AfxWin.h>
#else
#include <windows.h>
#endif
namespace Catch {
namespace {