mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-05 08:49:43 +02:00
In C++11, it is no longer necessary to avoid ">>" in nested templates
This commit is contained in:
parent
891525aa94
commit
e5a432cb6b
@ -21,7 +21,7 @@ public:
|
||||
void handleTS();
|
||||
|
||||
private:
|
||||
std::vector<std::unique_ptr<IconButton> > buttons;
|
||||
std::vector<std::unique_ptr<IconButton>> buttons;
|
||||
GMenu2X *gmenu2x;
|
||||
};
|
||||
|
||||
|
@ -55,7 +55,7 @@ private:
|
||||
bool close, ok;
|
||||
std::string title, text, icon;
|
||||
short curKeyboard;
|
||||
std::vector< std::vector<std::string> > keyboard;
|
||||
std::vector<std::vector<std::string>> keyboard;
|
||||
std::vector<std::string> *kb;
|
||||
int kbLength, kbWidth, kbHeight, kbLeft;
|
||||
SDL_Rect kbRect;
|
||||
|
@ -59,7 +59,7 @@ private:
|
||||
int iSection, iLink;
|
||||
uint iFirstDispRow;
|
||||
std::vector<std::string> sections;
|
||||
std::vector< std::vector<Link*> > links;
|
||||
std::vector<std::vector<Link*>> links;
|
||||
|
||||
uint linkColumns, linkRows;
|
||||
|
||||
|
@ -27,8 +27,8 @@
|
||||
|
||||
#include "inputmanager.h"
|
||||
|
||||
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;
|
||||
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 case_less {
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user