add spaces between '> >'

This commit is contained in:
Anton Mitrokhin
2015-02-04 14:43:08 +03:00
parent c377d8465e
commit bf87da7496

View File

@@ -223,8 +223,8 @@ typedef enum {
class AllCPUs { class AllCPUs {
private: private:
std::vector<std::vector<std::string>> names; std::vector<std::vector<std::string> > names;
std::vector<std::set<CPUtype>> compat; std::vector<std::set<CPUtype> > compat;
std::set<CPUtype> Set(CPUtype type, ...) { std::set<CPUtype> Set(CPUtype type, ...) {
std::set<CPUtype> retn; std::set<CPUtype> retn;
@@ -241,8 +241,8 @@ private:
public: public:
AllCPUs() { AllCPUs() {
names = std::vector<std::vector<std::string>>(sizeofCPUtype); names = std::vector<std::vector<std::string> >(sizeofCPUtype);
compat = std::vector<std::set<CPUtype>>(sizeofCPUtype); compat = std::vector<std::set<CPUtype> >(sizeofCPUtype);
names[CPU_Generic].push_back("generic"); names[CPU_Generic].push_back("generic");