2
0
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:
Hartmut Kaiser
2007-03-12 00:25:41 +00:00
parent d62a8447c0
commit f2abc6ae82

View File

@@ -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)
{