diff options
| author | Jack Nagel | 2014-07-30 20:19:43 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-07-30 20:19:43 -0500 |
| commit | dd331245ab334b2e3fde162b51c3b8b63f065548 (patch) | |
| tree | 2a48f016efe0846b60f32a9d6e6adfa8b3520f73 /Library | |
| parent | 0a605cbf8b6f20b8219884b1392ab4f01dfa96d2 (diff) | |
| download | brew-dd331245ab334b2e3fde162b51c3b8b63f065548.tar.bz2 | |
Remove unused accessor
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/build_options.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Homebrew/build_options.rb b/Library/Homebrew/build_options.rb index 240623652..478fd8a84 100644 --- a/Library/Homebrew/build_options.rb +++ b/Library/Homebrew/build_options.rb @@ -7,7 +7,6 @@ class BuildOptions attr_accessor :args attr_accessor :universal - attr_accessor :cxx11 attr_reader :options protected :options @@ -104,7 +103,7 @@ class BuildOptions # True if the user requested to enable C++11 mode. def cxx11? - cxx11 || args.include?('--c++11') && has_option?('c++11') + args.include?('--c++11') && has_option?('c++11') end # Request a 32-bit only build. |
