Skip to content

Instantly share code, notes, and snippets.

@mlschroe
Created October 10, 2011 10:20
Show Gist options
  • Save mlschroe/1275002 to your computer and use it in GitHub Desktop.
Save mlschroe/1275002 to your computer and use it in GitHub Desktop.
diff --git a/src/Perl6/Metamodel/C3MRO.pm b/src/Perl6/Metamodel/C3MRO.pm
index fd2b170..cb00d6d 100644
--- a/src/Perl6/Metamodel/C3MRO.pm
+++ b/src/Perl6/Metamodel/C3MRO.pm
@@ -55,12 +55,12 @@ role Perl6::Metamodel::C3MRO {
}
}
- # If we didn't reject it, this candidate will do.
- unless $rejected {
- $accepted := $cand_class;
- $something_accepted := 1;
- last;
- }
+ }
+ # If we didn't reject it, this candidate will do.
+ unless $rejected {
+ $accepted := $cand_class;
+ $something_accepted := 1;
+ last;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment