summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2003-12-14 20:06:41 +0000
committerNicholas Clark <nick@ccl4.org>2003-12-14 20:06:41 +0000
commit1c4e56907c18bd89d6e626b579617611939bea7d (patch)
treef21da5cc50574fd134ebd177e0f67dd8a0ba90ea /pp.c
parentdcf933a4be50d8c2632709d99162e1b812424330 (diff)
downloadperl-1c4e56907c18bd89d6e626b579617611939bea7d.tar.gz
Forgot to remove a comment
p4raw-id: //depot/perl@21910
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index a074cf6231..5ebc7440f1 100644
--- a/pp.c
+++ b/pp.c
@@ -2794,7 +2794,6 @@ PP(pp_int)
if (value > (NV)IV_MIN - 0.5) {
SETi(I_V(value));
} else {
- /* This is maint, and we don't have Perl_ceil in perl.h */
SETn(Perl_ceil(value));
}
}