X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=ceph%2Fsrc%2Fboost%2Fboost%2Fmove%2Fdetail%2Ftype_traits.hpp;h=8432ca2283091037cf674d3a55308000db8ec2d2;hb=92f5a8d42d07f9929ae4fa7e01342fe8d96808a8;hp=a3326d00e1829c8d84ef9af70f1ae12f6087e88c;hpb=a0324939f9d0e1905d5df8f57442f09dc70af83d;p=ceph.git diff --git a/ceph/src/boost/boost/move/detail/type_traits.hpp b/ceph/src/boost/boost/move/detail/type_traits.hpp index a3326d00e..8432ca228 100644 --- a/ceph/src/boost/boost/move/detail/type_traits.hpp +++ b/ceph/src/boost/boost/move/detail/type_traits.hpp @@ -973,7 +973,7 @@ struct aligned_struct; template\ struct BOOST_ALIGNMENT(A) aligned_struct\ {\ - char data[Len];\ + unsigned char data[Len];\ };\ // @@ -1000,7 +1000,7 @@ template union aligned_struct_wrapper { aligned_struct aligner; - char data[sizeof(aligned_struct)]; + unsigned char data[sizeof(aligned_struct)]; }; template @@ -1015,7 +1015,7 @@ template union aligned_union { T aligner; - char data[Len]; + unsigned char data[Len]; }; template