Created
October 10, 2011 10:20
-
-
Save mlschroe/1275002 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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