Replace uint32_t (not known in mingw)
authorStefan Vogel <sv@exept.de>
Tue, 11 Jun 2019 10:48:05 +0200
changeset 24333 e6d6a165972d
parent 24332 b7d80e0734e1
child 24335 0b12e9a57aa2
Replace uint32_t (not known in mingw)
DoubleArray.st
FloatArray.st
--- a/DoubleArray.st	Tue Jun 11 03:27:44 2019 +0000
+++ b/DoubleArray.st	Tue Jun 11 10:48:05 2019 +0200
@@ -393,7 +393,7 @@
         for (__i=0; __i<__mySize; __i++) {
             union {
                 double f;
-                uint32_t ui32[2];
+                unsigned int32 ui32[2];
             } u;
             int exp;
             
--- a/FloatArray.st	Tue Jun 11 03:27:44 2019 +0000
+++ b/FloatArray.st	Tue Jun 11 10:48:05 2019 +0200
@@ -954,7 +954,7 @@
         for (__i=0; __i<__mySize; __i++) {
             union {
                 double f;
-                uint32_t ui32[2];
+                unsigned int32 ui32[2];
             } u;
             int exp;