cwVectOps.h : Update comment.

This commit is contained in:
kevin 2023-01-08 14:12:11 -05:00
parent 64f7d8dead
commit 8c43021040

View File

@ -54,7 +54,7 @@ namespace cw
void copy( T0* v0, const T1* v1, unsigned n )
{
for(unsigned i=0; i<n; ++i)
v0[i] = (T0)v1[i];
v0[i] = (T0)v1[i]; // Note: copy with convert - not the same as memcpy.
}
template< typename T0, typename T1 >