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:
@@ -29,8 +29,8 @@
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
#include <tr1/unordered_map>
|
||||
|
||||
class ASFont;
|
||||
class Button;
|
||||
@@ -58,8 +58,8 @@ enum color {
|
||||
NUM_COLORS,
|
||||
};
|
||||
|
||||
typedef std::tr1::unordered_map<std::string, std::string, std::tr1::hash<std::string> > ConfStrHash;
|
||||
typedef std::tr1::unordered_map<std::string, int, std::tr1::hash<std::string> > ConfIntHash;
|
||||
typedef std::unordered_map<std::string, std::string, std::hash<std::string> > ConfStrHash;
|
||||
typedef std::unordered_map<std::string, int, std::hash<std::string> > ConfIntHash;
|
||||
|
||||
class GMenu2X {
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user