Add LE(T) macro

I figured since I was messing with some parsing code might as well be prudent. In case somebody revives big-endian CPUs.
This commit is contained in:
PJB3005
2026-07-25 15:40:32 +02:00
parent 6ded3ac467
commit 30c36df76b
+1
View File
@@ -285,6 +285,7 @@ inline void be_swap(Mtx& val) {
}
}
#define LE(T) T
#define BE(T) BE<T>
#define BE_HOST(T) (T.host())
#else