예제 #1
0
파일: algorithms.hpp 프로젝트: gijs/hexer
inline void construct_in_place(A &a, T *dest, emplace_iterator<U, EF, D> ei)
{
   ei.construct_in_place(a, dest);
}
예제 #2
0
inline void construct_in_place(T *dest, emplace_iterator<U, E> ei)
{
   ei.construct_in_place(dest);
}