Document CompilerFailure and CompilerSelector.

This commit is contained in:
Markus Reiter 2020-08-14 03:21:41 +02:00
parent 608760908f
commit a5c1f38186

View File

@ -14,6 +14,9 @@ module CompilerConstants
GNU_GCC_VERSIONS.map { |n| "gcc-#{n}" }).freeze
end
# Class for checking compiler compatibility for a formula.
#
# @api private
class CompilerFailure
attr_reader :name
@ -70,6 +73,9 @@ class CompilerFailure
}.freeze
end
# Class for selecting a compiler for a formula.
#
# @api private
class CompilerSelector
include CompilerConstants