diff options
| author | Jack Nagel | 2014-02-22 11:17:04 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-02-22 11:17:04 -0500 |
| commit | 330ad0ba3653c74c0d00188a1b15505cf92c6b82 (patch) | |
| tree | 45c645ebde285a3c04ebde1950ec78b9afe9cdd6 | |
| parent | d46dd5cbcbff1a0087b6605217b7ddf14275b003 (diff) | |
| download | homebrew-330ad0ba3653c74c0d00188a1b15505cf92c6b82.tar.bz2 | |
Use standard assignment since #initialize is only called once
| -rw-r--r-- | Library/Homebrew/formula.rb | 2 |
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) |
