Skip to content

Commit

Permalink
sv.c: Comments white-space only
Browse files Browse the repository at this point in the history
  • Loading branch information
khwilliamson committed Apr 12, 2021
1 parent 2ec9477 commit 27b50e3
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions sv.c
Original file line number Diff line number Diff line change
Expand Up @@ -4566,11 +4566,11 @@ Perl_sv_setsv_flags(pTHX_ SV *dsv, SV* ssv, const I32 flags)
* be allocated it is still not worth swiping PADTMPs for short
* strings, as the savings here are small.
*
* If swiping is not an option, then we see whether it is
* worth using copy-on-write. If the lhs already has a buf-
* fer big enough and the string is short, we skip it and fall back
* to method 3, since memcpy is faster for short strings than the
* later bookkeeping overhead that copy-on-write entails.
* If swiping is not an option, then we see whether it is worth using
* copy-on-write. If the lhs already has a buffer big enough and the
* string is short, we skip it and fall back to method 3, since memcpy
* is faster for short strings than the later bookkeeping overhead that
* copy-on-write entails.
* If the rhs is not a copy-on-write string yet, then we also
* consider whether the buffer is too large relative to the string
Expand Down Expand Up @@ -15666,8 +15666,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
#ifdef USE_LOCALE_COLLATE
PL_collation_name = SAVEPV(proto_perl->Icollation_name);
PL_in_utf8_COLLATE_locale = proto_perl->Iin_utf8_COLLATE_locale;
#endif /* USE_LOCALE_COLLATE */

#endif
#ifdef USE_LOCALE_NUMERIC
PL_numeric_name = SAVEPV(proto_perl->Inumeric_name);
PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
Expand Down

0 comments on commit 27b50e3

Please sign in to comment.