Remove dead code

This commit is contained in:
Kim Kulling
2020-06-09 10:15:35 +02:00
committed by GitHub
parent 620bebb999
commit 88c1509d69

View File

@@ -981,7 +981,6 @@ void GetArrayCopy(Type*& dest, ai_uint num ) {
for ( size_t i=0; i<num; ++i ) {
dest[i] = old[i];
}
// ::memcpy(dest, old, sizeof(Type) * num);
}
// ------------------------------------------------------------------------------------------------