Fixed example to work with VC7b2

[SVN r11625]
This commit is contained in:
John Maddock
2001-11-07 12:37:29 +00:00
parent d750ec6e09
commit bf11510e71

View File

@@ -111,7 +111,7 @@ inline I2 copy_(const I1& first, const I1& last, const I2& out)
}
template<typename T>
inline T* copy_(const T* first, const T* last, T* out)
inline T* copy_(const T*& first, const T*& last, T*& out)
{
return detail::copier<
::boost::has_trivial_assign<T>::value
@@ -239,3 +239,4 @@ int cpp_main(int argc, char* argv[])