The MUI demos do not compile on mac OS with clang because the macros for generating the overload sets of istream& operator>>(istream&, T&) and ostream& operator<<(ostream&, const T& ) do not include all the needed types T.
I have reimplemented this with some simple types traits for the endian conversions. The macros for controlling this are now a bit different but I've tried to document this in the source (in endian_traits.h)
The MUI demos do not compile on mac OS with clang because the macros for generating the overload sets of
istream& operator>>(istream&, T&)
andostream& operator<<(ostream&, const T& )
do not include all the needed typesT
.I have reimplemented this with some simple types traits for the endian conversions. The macros for controlling this are now a bit different but I've tried to document this in the source (in endian_traits.h)