projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
cee7ab8
)
Trailing semi-colon are not allowed on #ifdef's in ANSI
H.Merijn Brand [Thu, 15 Jul 2004 14:16:07 +0000 (14:16 +0000)]
p4raw-id: //depot/perl@23117
ext/Storable/Storable.xs
patch
|
blob
|
blame
|
history
diff --git
a/ext/Storable/Storable.xs
b/ext/Storable/Storable.xs
index
851443b
..
3c65c4a
100644
(file)
--- a/
ext/Storable/Storable.xs
+++ b/
ext/Storable/Storable.xs
@@
-1843,7
+1843,7
@@
static int store_ref(pTHX_ stcxt_t *cxt, SV *sv)
* Follow reference, and check if target is overloaded.
*/
-#ifdef SvWEAKREF;
+#ifdef SvWEAKREF
if (SvWEAKREF(sv))
is_weak = 1;
TRACEME(("ref (0x%"UVxf") is%s weak", PTR2UV(sv), is_weak ? "" : "n't"));