aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Joel Holdsworth <joel.holdsworth@vcatechnology.com>2020-03-19 11:25:56 +0000
committerGravatar Joel Holdsworth <joel.holdsworth@vcatechnology.com>2020-03-26 20:19:58 +0000
commit6d2dbfc45381141281625bd72a74f3d61d11bf1d (patch)
tree26ce264d5bc5f1361abeda88a76f5ed1b841b554 /Eigen
parent52d54278beefee8b2f19dcca4fd900916154e174 (diff)
NEON: Fixed MSVC types definitions
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/arch/NEON/PacketMath.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/arch/NEON/PacketMath.h b/Eigen/src/Core/arch/NEON/PacketMath.h
index 326873f8a..9124eff5e 100644
--- a/Eigen/src/Core/arch/NEON/PacketMath.h
+++ b/Eigen/src/Core/arch/NEON/PacketMath.h
@@ -60,12 +60,12 @@ struct eigen_packet_wrapper
// (See also bug 1428)
typedef eigen_packet_wrapper<float32x2_t,0> Packet2f;
typedef eigen_packet_wrapper<float32x4_t,1> Packet4f;
-typedef eigen_packet_wrapper<int32_t ,2> Packet8c;
+typedef eigen_packet_wrapper<int32_t ,2> Packet4c;
typedef eigen_packet_wrapper<int8x8_t ,3> Packet8c;
typedef eigen_packet_wrapper<int8x16_t ,4> Packet16c;
-typedef eigen_packet_wrapper<uint32_t ,5> Packet8us;
-typedef eigen_packet_wrapper<uint8x8_t ,6> Packet8us;
-typedef eigen_packet_wrapper<uint8x16_t ,7> Packet16us;
+typedef eigen_packet_wrapper<uint32_t ,5> Packet4uc;
+typedef eigen_packet_wrapper<uint8x8_t ,6> Packet8uc;
+typedef eigen_packet_wrapper<uint8x16_t ,7> Packet16uc;
typedef eigen_packet_wrapper<int16x4_t ,8> Packet4s;
typedef eigen_packet_wrapper<int16x8_t ,9> Packet8s;
typedef eigen_packet_wrapper<uint16x4_t ,10> Packet4us;