diff --git a/ispc.cpp b/ispc.cpp index 59c8a826..57893fa5 100644 --- a/ispc.cpp +++ b/ispc.cpp @@ -223,8 +223,8 @@ typedef enum { class AllCPUs { private: - std::vector> names; - std::vector> compat; + std::vector > names; + std::vector > compat; std::set Set(CPUtype type, ...) { std::set retn; @@ -241,8 +241,8 @@ private: public: AllCPUs() { - names = std::vector>(sizeofCPUtype); - compat = std::vector>(sizeofCPUtype); + names = std::vector >(sizeofCPUtype); + compat = std::vector >(sizeofCPUtype); names[CPU_Generic].push_back("generic");