Removed STLport requirement

This commit is contained in:
Anonymous
2014-01-23 00:16:13 -07:00
parent a9ac73d4e5
commit fac1f2c5ae
173 changed files with 454 additions and 479 deletions
@@ -14,6 +14,7 @@
#include <fcntl.h>
#include <unistd.h>
#include <dlfcn.h>
#include <cstddef>
#include <map>
#include <vector>
@@ -17,7 +17,7 @@
#include <vector>
#include <list>
#include <hash_map>
#include <tr1/unordered_map>
// ======================================================================
@@ -89,7 +89,7 @@ protected:
ReferenceCountingData *referenceData;
};
typedef std::hash_map<void *, ObjectData, ptr_hash> ObjectMap;
typedef std::tr1::unordered_map<void *, ObjectData, ptr_hash> ObjectMap;
ObjectMap liveObjects;
};