diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-21 07:15:54 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-21 07:15:54 +0000 |
commit | db15561cb83ed8e36f76d63e4283fc51c30fd71f (patch) | |
tree | 27633dd207e28c21b9b96dede3a5535513b13c37 /ext/Opcode/Opcode.xs | |
parent | 42d3a99d28b720322fc7b50bd358ea47c49a9722 (diff) | |
download | perl-db15561cb83ed8e36f76d63e4283fc51c30fd71f.tar.gz |
fixes to enable PERL_OBJECT build with mingw32/egcs-1.0.2
p4raw-id: //depot/perl@1612
Diffstat (limited to 'ext/Opcode/Opcode.xs')
-rw-r--r-- | ext/Opcode/Opcode.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Opcode/Opcode.xs b/ext/Opcode/Opcode.xs index 1da7794577..e853cf19a3 100644 --- a/ext/Opcode/Opcode.xs +++ b/ext/Opcode/Opcode.xs @@ -204,7 +204,7 @@ opmask_addlocal(SV *opset, char *op_mask_buf) /* Localise PL_op_mask then opmask { char *orig_op_mask = PL_op_mask; SAVEPPTR(PL_op_mask); -#if !(defined(PERL_OBJECT) && defined(__BORLANDC__)) +#if !defined(PERL_OBJECT) /* XXX casting to an ordinary function ptr from a member function ptr * is disallowed by Borland */ |