Remove dead code

issue_3165
Kim Kulling 2020-06-09 10:15:35 +02:00 committed by GitHub
parent 620bebb999
commit 88c1509d69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

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