diff options
| author | Jack Nagel | 2014-08-02 19:29:58 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-02 19:29:58 -0500 |
| commit | 5a18a35fb559e45d2c60807b39f4087aa3a15ced (patch) | |
| tree | d35b4ea581abab7758052d6d2fef77c8fcc0796a | |
| parent | 9f5c212a6d42ba545943c10f8d6ed9f7e7f74a88 (diff) | |
| download | homebrew-5a18a35fb559e45d2c60807b39f4087aa3a15ced.tar.bz2 | |
CxxStdlib should be immutable so remove writer methods
| -rw-r--r-- | Library/Homebrew/cxxstdlib.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cxxstdlib.rb b/Library/Homebrew/cxxstdlib.rb index d04a86db0..a7c84ac2d 100644 --- a/Library/Homebrew/cxxstdlib.rb +++ b/Library/Homebrew/cxxstdlib.rb @@ -1,7 +1,7 @@ require "compilers" class CxxStdlib - attr_accessor :type, :compiler + attr_reader :type, :compiler def initialize(type, compiler) if type && ![:libstdcxx, :libcxx].include?(type) |
