aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-02-22 11:17:04 -0500
committerJack Nagel2014-02-22 11:17:04 -0500
commit330ad0ba3653c74c0d00188a1b15505cf92c6b82 (patch)
tree45c645ebde285a3c04ebde1950ec78b9afe9cdd6
parentd46dd5cbcbff1a0087b6605217b7ddf14275b003 (diff)
downloadhomebrew-330ad0ba3653c74c0d00188a1b15505cf92c6b82.tar.bz2
Use standard assignment since #initialize is only called once
-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)