diff options
| author | Jack Nagel | 2014-08-12 23:55:28 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-12 23:55:28 -0500 |
| commit | 25395c6de60849ea92c74bed8506d6e209ea7bf4 (patch) | |
| tree | 8fc5879de012fead9ed6bcf7a17ed65697e3721b /Library/Homebrew/tab.rb | |
| parent | 0a2be32d802073ef46596792a46f7139bb862a8c (diff) | |
| download | brew-25395c6de60849ea92c74bed8506d6e209ea7bf4.tar.bz2 | |
Replace Options.coerce with an alternate constructor
Diffstat (limited to 'Library/Homebrew/tab.rb')
| -rw-r--r-- | Library/Homebrew/tab.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/tab.rb b/Library/Homebrew/tab.rb index edba1d0e6..daf701591 100644 --- a/Library/Homebrew/tab.rb +++ b/Library/Homebrew/tab.rb @@ -106,11 +106,11 @@ class Tab < OpenStruct end def used_options - Options.coerce(super) + Options.create(super) end def unused_options - Options.coerce(super) + Options.create(super) end def cxxstdlib |
