diff options
| author | Jack Nagel | 2014-07-30 20:19:43 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-07-30 20:19:43 -0500 |
| commit | 0adf64bd51cac5689896ccd53bc68e1bef479982 (patch) | |
| tree | 0b40ed8ba1a1062373761c6deefb643f062c12e4 | |
| parent | fa037bbdb69a2f5642619fa3930afed770e11b96 (diff) | |
| download | homebrew-0adf64bd51cac5689896ccd53bc68e1bef479982.tar.bz2 | |
Remove unused accessor
| -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. |
