(self, verbose=0, dry_run=0, force=0)
| 84 | compiler_cxx = 'icl' |
| 85 | |
| 86 | def __init__(self, verbose=0, dry_run=0, force=0): |
| 87 | MSVCCompiler.__init__(self, verbose, dry_run, force) |
| 88 | version_match = simple_version_match(start=r'Intel\(R\).*?32,') |
| 89 | self.__version = version_match |
| 90 | |
| 91 | def initialize(self, plat_name=None): |
| 92 | MSVCCompiler.initialize(self, plat_name) |
nothing calls this directly
no test coverage detected