Bug #6066 » digest.return.patch
ext/digest/digest.c (working copy) | ||
---|---|---|
rb_digest_instance_update(VALUE self, VALUE str)
|
||
{
|
||
rb_digest_instance_method_unimpl(self, "update");
|
||
return Qnil; /* not reached */
|
||
}
|
||
/*
|
||
... | ... | |
rb_digest_instance_finish(VALUE self)
|
||
{
|
||
rb_digest_instance_method_unimpl(self, "finish");
|
||
return Qnil; /* not reached */
|
||
}
|
||
/*
|
||
... | ... | |
rb_digest_instance_reset(VALUE self)
|
||
{
|
||
rb_digest_instance_method_unimpl(self, "reset");
|
||
return Qnil; /* not reached */
|
||
}
|
||
/*
|
||
... | ... | |
rb_digest_instance_block_length(VALUE self)
|
||
{
|
||
rb_digest_instance_method_unimpl(self, "block_length");
|
||
return Qnil; /* not reached */
|
||
}
|
||
/*
|