projects
/
gitmo/Moose.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e039f69
)
Suppress a bogus warning
Florian Ragwitz [Mon, 14 Mar 2011 04:10:31 +0000 (
05:10
+0100)]
xs/HasMethods.xs
patch
|
blob
|
blame
|
history
diff --git
a/xs/HasMethods.xs
b/xs/HasMethods.xs
index
047e1b2
..
e136abe
100644
(file)
--- a/
xs/HasMethods.xs
+++ b/
xs/HasMethods.xs
@@
-38,7
+38,7
@@
mop_update_method_map(pTHX_ HV *const stash, HV *const map)
}
/* delete $map->{$method_name} */
- hv_delete(map, method_name, method_name_len, G_DISCARD);
+ (void)hv_delete(map, method_name, method_name_len, G_DISCARD);
}
}