Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
hide handle_p5_exception from backtraces
  • Loading branch information
moritz committed Sep 26, 2014
1 parent 964a9cb commit 0762b31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Inline/Perl5.pm6
Expand Up @@ -358,7 +358,7 @@ method p5_to_p6(OpaquePointer $value) {
die "Unsupported type $value in p5_to_p6";
}

method handle_p5_exception() {
method handle_p5_exception() is hidden_from_backtrace {
if my $error = self.p5_to_p6(p5_err_sv($!p5)) {
die $error;
}
Expand Down

0 comments on commit 0762b31

Please sign in to comment.