Skip to content

Commit

Permalink
Add missing std:: namespace to size_t types.
Browse files Browse the repository at this point in the history
  • Loading branch information
igaztanaga committed Sep 8, 2015
1 parent 49e1fbb commit 6e42a16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/boost/move/detail/type_traits.hpp
Expand Up @@ -480,7 +480,7 @@ template <class T>
struct remove_all_extents<T[]>
{ 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]>
{ typedef typename remove_all_extents<T>::type type;};

Expand Down Expand Up @@ -1003,7 +1003,7 @@ BOOST_MOVE_ALIGNED_STORAGE_WITH_BOOST_ALIGNMENT(0x1000)

#else //BOOST_NO_ALIGNMENT

template<class T, size_t Len>
template<class T, std::size_t Len>
union aligned_union
{
T aligner;
Expand Down

0 comments on commit 6e42a16

Please sign in to comment.