mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2025-04-21 12:27:27 +03:00
The "tr1" namespace is no longer needed now that we're on C++11
This commit is contained in:
@@ -21,11 +21,11 @@
|
||||
#define SURFACECOLLECTION_H
|
||||
|
||||
#include <string>
|
||||
#include <tr1/unordered_map>
|
||||
#include <unordered_map>
|
||||
|
||||
class Surface;
|
||||
|
||||
typedef std::tr1::unordered_map<std::string, Surface *> SurfaceHash;
|
||||
typedef std::unordered_map<std::string, Surface *> SurfaceHash;
|
||||
|
||||
/**
|
||||
Hash Map of surfaces that loads surfaces not already loaded and reuses already loaded ones.
|
||||
|
||||
Reference in New Issue
Block a user