s/IsVectorized/Vectorizable

This commit is contained in:
Gael Guennebaud
2010-07-07 11:10:46 +02:00
parent 74cf12cbe0
commit b0896382a3
8 changed files with 19 additions and 19 deletions

View File

@@ -87,7 +87,7 @@ template<> struct ei_packet_traits<float> : ei_default_packet_traits
{
typedef Packet4f type;
enum {
IsVectorized = 1,
Vectorizable = 1,
size=4,
// FIXME check the Has*
@@ -103,7 +103,7 @@ template<> struct ei_packet_traits<int> : ei_default_packet_traits
typedef Packet4i type;
enum {
// FIXME check the Has*
IsVectorized = 1,
Vectorizable = 1,
size=4
};
};