git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1247 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
@@ -133,3 +133,6 @@ Several LWO and LWS fixes (pivoting).
- Marcel Metz
GCC/Linux fixes for the SimpleOpenGL sample.
+
+- Brian Miller
+Bugfix for a compiler fix for iOS on arm.
@@ -295,7 +295,12 @@ private:
throw DeadlyImportError("End of file or stream limit was reached");
}
+#ifdef __arm__
+ T f;
+ memcpy (&f, current, sizeof(T));
+#else
T f = *((const T*)current);
+#endif
Intern :: Getter<SwapEndianess,T,RuntimeSwitch>() (&f,le);
current += sizeof(T);