1
0
Fork 0

BRIDGE: fixed bridgegraph.h compilation for older MSVC versions

This commit is contained in:
mrexodia 2016-07-22 18:57:07 +02:00
parent 148d7ea1cb
commit 5b8e1b7f21
No known key found for this signature in database
GPG Key ID: D72F9A4FAA0073B4
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ typedef struct
} BridgeCFGraphList;
#ifdef __cplusplus
#if _MSC_VER > 1300
#if _MSC_VER >= 1700 && !defined(NO_CPP11)
#include <unordered_map>
#include <unordered_set>