diff options
Diffstat (limited to 'Library/Homebrew/cxxstdlib.rb')
| -rw-r--r-- | Library/Homebrew/cxxstdlib.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Library/Homebrew/cxxstdlib.rb b/Library/Homebrew/cxxstdlib.rb index 30b16854c..1f629a8b2 100644 --- a/Library/Homebrew/cxxstdlib.rb +++ b/Library/Homebrew/cxxstdlib.rb @@ -59,14 +59,14 @@ class CxxStdlib        next if dep.build?        dep_stdlib = Tab.for_formula(dep.to_formula).cxxstdlib -      if !compatible_with? dep_stdlib +      unless compatible_with? dep_stdlib          raise CompatibilityError.new(formula, dep, dep_stdlib)        end      end    end    def type_string -    type.to_s.gsub(/cxx$/, 'c++') +    type.to_s.gsub(/cxx$/, "c++")    end    def inspect | 
