Change 33811 by [EMAIL PROTECTED] on 2008/05/10 16:07:35
Remove C++ comments
Affected files ...
... //depot/perl/ext/threads/shared/shared.xs#72 edit
Differences ...
==== //depot/perl/ext/threads/shared/shared.xs#72 (text) ====
Index: perl/ext/threads/shared/shared.xs
--- perl/ext/threads/shared/shared.xs#71~33809~ 2008-05-10 09:06:53.000000000
-0700
+++ perl/ext/threads/shared/shared.xs 2008-05-10 09:07:35.000000000 -0700
@@ -712,7 +712,7 @@
ENTER_LOCK;
if (SvROK(ssv)) {
S_get_RV(aTHX_ sv, ssv);
- // Look ahead for refs of refs
+ /* Look ahead for refs of refs */
if (SvROK(SvRV(ssv))) {
SvROK_on(SvRV(sv));
S_get_RV(aTHX_ SvRV(sv), SvRV(ssv));
@@ -885,7 +885,7 @@
/* Exists in the array */
if (SvROK(*svp)) {
S_get_RV(aTHX_ sv, *svp);
- // Look ahead for refs of refs
+ /* Look ahead for refs of refs */
if (SvROK(SvRV(*svp))) {
SvROK_on(SvRV(sv));
S_get_RV(aTHX_ SvRV(sv), SvRV(*svp));
End of Patch.