summaryrefslogtreecommitdiff
path: root/gv.c
diff options
context:
space:
mode:
authorJan Dubois <jand@activestate.com>1999-01-24 02:12:00 +0100
committerGurusamy Sarathy <gsar@cpan.org>1999-02-12 13:25:59 +0000
commit9e7bc3e8c0a5a5a357a2bda9981a86c5a61092c1 (patch)
treedc6c1d0c460cd55c7d2b7b74378919964cf50799 /gv.c
parent01e22528c2c3f941ba946b303423dfa59ea39444 (diff)
downloadperl-9e7bc3e8c0a5a5a357a2bda9981a86c5a61092c1.tar.gz
remove OVERLOAD conditionals
Message-ID: <36b66479.62756298@smtp1.ibm.net> p4raw-id: //depot/perl@2903
Diffstat (limited to 'gv.c')
-rw-r--r--gv.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gv.c b/gv.c
index e6e4a55690..a1e5073bb3 100644
--- a/gv.c
+++ b/gv.c
@@ -654,7 +654,6 @@ gv_fetchpv(char *nambeg, I32 add, I32 sv_type)
}
}
break;
-#ifdef OVERLOAD
case 'O':
if (strEQ(name, "OVERLOAD")) {
HV* hv = GvHVn(gv);
@@ -662,7 +661,6 @@ gv_fetchpv(char *nambeg, I32 add, I32 sv_type)
hv_magic(hv, gv, 'A');
}
break;
-#endif /* OVERLOAD */
case 'S':
if (strEQ(name, "SIG")) {
HV *hv;
@@ -1005,7 +1003,6 @@ register GV *gv;
}
#endif /* Microport 2.4 hack */
-#ifdef OVERLOAD
/* Updates and caches the CV's */
bool
@@ -1483,5 +1480,3 @@ amagic_call(SV *left, SV *right, int method, int flags)
}
}
}
-#endif /* OVERLOAD */
-