I using currently latest Boost library (1.55.0). While my code compiles great on Winrt\Win32, for some reason I failed to use it on ARM. When I trying to compile my code using Boost, I getting these 3 kinds of errors:
-
BOOST_STATIC_ASSERT(false) --> false at fp_traits.hpp, line 472
-
error C2065: 'offset_' : undeclared identifier (.. [ommited] ..) --> at fp_traits.hpp, line 457
-
error C2660: 'memcpy' : function does not take 2 arguments (.. [ommited] ..) -> at fp_traits.hpp, line 457. Probably this happens because of error 2.
I suspect that I missing some preprocessor define or some compiler setting, but I don't know what.
P.S. I using VS 2013 on Windows 8.1
Any help will be greatly appreciated, Thanks