id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 5129,Doesn't handle alignment correctly,anonymous,Peter Dimov,"The following example won't compile on VS 2008 boost v 1.44: {{{ #include ""boost/bind.hpp"" #include ""xmmintrin.h"" void example( const __m128& ) {} int main() { boost::bind( example, __m128() )(); } }}} The reason being that __m128 doesn't have default alignment, causing the following error: ""error C2719: 'a1': formal parameter with __declspec(align('16')) won't be aligned"". The example function in this case would be able to take the argument, the culprit is in the constructor of list1 which takes accepts by value, when in this case we'd need to accept by const reference ( I presume without being familiar with the details of binds implementation ).",Bugs,closed,To Be Determined,bind,Boost 1.44.0,Problem,invalid,,