コード例 #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
ファイル: algorithms.hpp プロジェクト: kotbegemot/tasks
inline void construct_in_place(T *dest, emplace_iterator<U, E> ei)
{
   ei.construct_in_place(dest);
}