Removed GCC10

This commit is contained in:
Steffen Lange 2023-07-08 10:30:07 +02:00
parent 7ce7b08e5a
commit bebdbf03a6

View file

@ -1,15 +0,0 @@
<?php
class GCC10 extends PatchBase {
function __construct() {
parent::__construct('Free Software Foundation', 'GNU Compiler Collection', 'https://gcc.gnu.org/');
$this->patch->setBranch('10');
}
function check() : bool {
if ($this->fetch('https://gcc.gnu.org/'))
return $this->parse('/<span class="version"><a href="gcc-10\/">GCC ([\d\.]+)/');
return false;
}
}
?>