Skip to content

Commit

Permalink
Don't declare return values for PPCODE.
Browse files Browse the repository at this point in the history
This silences some more compiler warnings.
  • Loading branch information
rafl committed Nov 15, 2008
1 parent c50e7c4 commit e2c189a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions MOP.xs
Expand Up @@ -170,7 +170,7 @@ get_all_package_symbols(self, ...)

}

SV *
void
name(self)
SV *self
PREINIT:
Expand All @@ -187,7 +187,7 @@ name(self)

MODULE = Class::MOP PACKAGE = Class::MOP::Attribute

SV *
void
name(self)
SV *self
PREINIT:
Expand All @@ -204,7 +204,7 @@ name(self)

MODULE = Class::MOP PACKAGE = Class::MOP::Method

SV *
void
name(self)
SV *self
PREINIT:
Expand All @@ -219,7 +219,7 @@ name(self)
else
ST(0) = &PL_sv_undef;

SV *
void
package_name(self)
SV *self
PREINIT:
Expand All @@ -234,7 +234,7 @@ package_name(self)
else
ST(0) = &PL_sv_undef;

SV *
void
body(self)
SV *self
PREINIT:
Expand Down

0 comments on commit e2c189a

Please sign in to comment.