aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compilers.rb
diff options
context:
space:
mode:
authorJack Nagel2014-08-03 13:06:46 -0500
committerJack Nagel2014-08-03 13:13:23 -0500
commit15881a91a8a2e7cabd2dcb34da5afd6d6a7589fd (patch)
tree2f0269ffc2f567a111d4648906bd5dc7bd093f13 /Library/Homebrew/compilers.rb
parent9bc8ac8fbd99bd7b46f93245adc5c56830b8556a (diff)
downloadhomebrew-15881a91a8a2e7cabd2dcb34da5afd6d6a7589fd.tar.bz2
Remove dead code
Diffstat (limited to 'Library/Homebrew/compilers.rb')
-rw-r--r--Library/Homebrew/compilers.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/Library/Homebrew/compilers.rb b/Library/Homebrew/compilers.rb
index 2fa43757d..95faa4415 100644
--- a/Library/Homebrew/compilers.rb
+++ b/Library/Homebrew/compilers.rb
@@ -121,12 +121,10 @@ class CompilerSelector
def priority_for(cc)
case cc
- when :clang then @versions.clang_build_version >= 318 ? 3 : 0.5
- when :gcc then 2.5
- when :llvm then 2
+ when :clang then @versions.clang_build_version >= 318 ? 3 : 0.5
+ when :gcc then 2.5
+ when :llvm then 2
when :gcc_4_0 then 0.25
- # non-Apple gcc compilers
- else 1.5
end
end
end