Add missing std:: namespace to size_t types.

This commit is contained in:
Ion Gaztañaga
2015-09-08 23:19:54 +02:00
parent 49e1fbb0f5
commit 6e42a16dd6

View File

@@ -480,7 +480,7 @@ template <class T>
struct remove_all_extents<T[]> struct remove_all_extents<T[]>
{ typedef typename remove_all_extents<T>::type type; }; { typedef typename remove_all_extents<T>::type type; };
template <class T, size_t N> template <class T, std::size_t N>
struct remove_all_extents<T[N]> struct remove_all_extents<T[N]>
{ typedef typename remove_all_extents<T>::type type;}; { typedef typename remove_all_extents<T>::type type;};
@@ -1003,7 +1003,7 @@ BOOST_MOVE_ALIGNED_STORAGE_WITH_BOOST_ALIGNMENT(0x1000)
#else //BOOST_NO_ALIGNMENT #else //BOOST_NO_ALIGNMENT
template<class T, size_t Len> template<class T, std::size_t Len>
union aligned_union union aligned_union
{ {
T aligner; T aligner;