mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-16 00:54:54 +00:00
From Dušan Jocić: convexDecomp vs2015+ compatibility patch
(Verified with https://github.com/GarageGames/Torque3D/pull/1376 for sub vs2015)
This commit is contained in:
parent
b24bdfbc8b
commit
a487583946
1 changed files with 5 additions and 1 deletions
|
|
@ -60,8 +60,12 @@ NvRemoveTjunctions.cpp : A code snippet to remove tjunctions from a triangle mes
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
#include <ext/hash_map>
|
#include <ext/hash_map>
|
||||||
#else
|
#elif LINUX
|
||||||
#include <hash_map>
|
#include <hash_map>
|
||||||
|
#elif _MSC_VER < 1500
|
||||||
|
#include <hash_map>
|
||||||
|
#elif _MSC_VER > 1800
|
||||||
|
#include <unordered_map>
|
||||||
#endif
|
#endif
|
||||||
#include "NvUserMemAlloc.h"
|
#include "NvUserMemAlloc.h"
|
||||||
#include "NvHashMap.h"
|
#include "NvHashMap.h"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue