From bf87da749624b6ee26511636f4e28cbba0574a60 Mon Sep 17 00:00:00 2001 From: Anton Mitrokhin Date: Wed, 4 Feb 2015 14:43:08 +0300 Subject: [PATCH] add spaces between '> >' --- ispc.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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");