Skip to content

Commit d7c4beb

Browse files
committed
try
1 parent 4d0d999 commit d7c4beb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

include/xtl/xsequence.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ namespace xtl
121121
static inline R forward(const T& r)
122122
{
123123
R ret;
124-
std::copy_n(std::begin(r), std::size(ret), std::begin(ret));
124+
// std::copy_n(std::begin(r), std::size(ret), std::begin(ret));
125+
std::copy(std::begin(r), std::end(r), std::begin(ret));
125126
return ret;
126127
}
127128
};

0 commit comments

Comments
 (0)