aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-02-22 11:17:04 -0500
committerJack Nagel2014-02-22 11:17:04 -0500
commita2372ad539599322cd3a564cf7bd06d6dbd70249 (patch)
tree73df3a24a461b6676486ec9871c0ec9a4632cb90 /Library
parent5a7a5c3eaed2ea9ae1b1586e8825bfe499fe8600 (diff)
downloadbrew-a2372ad539599322cd3a564cf7bd06d6dbd70249.tar.bz2
Use standard assignment since #initialize is only called once
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index d70b59a9c..2da151d6e 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)