mirror of
https://github.com/boostorg/wave.git
synced 2026-02-12 00:32:17 +00:00
Fixed compilation problem.
[SVN r37170]
This commit is contained in:
@@ -111,6 +111,17 @@ namespace util {
|
||||
|
||||
namespace flex_string_details
|
||||
{
|
||||
template <class InIt, class OutIt>
|
||||
OutIt copy_n(InIt b,
|
||||
typename std::iterator_traits<InIt>::difference_type n, OutIt d)
|
||||
{
|
||||
for (/**/; n != 0; --n, ++b, ++d)
|
||||
{
|
||||
*d = *b;
|
||||
}
|
||||
return d;
|
||||
}
|
||||
|
||||
template <class Pod, class T>
|
||||
inline void pod_fill(Pod* b, Pod* e, T c)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user