formatting

This commit is contained in:
David Turner 2004-01-16 08:46:51 +00:00
parent 16123dfe93
commit cd9f3b3b5a
1 changed files with 3 additions and 6 deletions

View File

@ -253,14 +253,11 @@
goto Exit; goto Exit;
/* copy it */ /* copy it */
FT_ARRAY_COPY( target->points, source->points, FT_ARRAY_COPY( target->points, source->points, source->n_points );
source->n_points );
FT_ARRAY_COPY( target->tags, source->tags, FT_ARRAY_COPY( target->tags, source->tags, source->n_points );
source->n_points );
FT_ARRAY_COPY( target->contours, source->contours, FT_ARRAY_COPY( target->contours, source->contours, source->n_contours );
source->n_contours );
/* copy all flags, except the `FT_OUTLINE_OWNER' one */ /* copy all flags, except the `FT_OUTLINE_OWNER' one */
target->flags = source->flags | FT_OUTLINE_OWNER; target->flags = source->flags | FT_OUTLINE_OWNER;