From a2372ad539599322cd3a564cf7bd06d6dbd70249 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 22 Feb 2014 11:17:04 -0500 Subject: [PATCH] Use standard assignment since #initialize is only called once --- Library/Homebrew/formula.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index d70b59a9c2..2da151d6ef 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -56,7 +56,7 @@ class Formula @pin = FormulaPin.new(self) - @cxxstdlib ||= Set.new + @cxxstdlib = Set.new end def set_spec(name)