diff options
author | Dan Fandrich <danf@mageia.org> | 2024-04-01 15:55:01 -0700 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-04-01 15:55:01 -0700 |
commit | b46cdc58b2e4139aa7450f4c57aa320762400882 (patch) | |
tree | 982124f764d95fec1c31d1c229ff88a2cc7977af | |
parent | b5e768b5f4ed5119cb14b483f3aabbefdc81f227 (diff) | |
download | autobuild-b46cdc58b2e4139aa7450f4c57aa320762400882.tar autobuild-b46cdc58b2e4139aa7450f4c57aa320762400882.tar.gz autobuild-b46cdc58b2e4139aa7450f4c57aa320762400882.tar.bz2 autobuild-b46cdc58b2e4139aa7450f4c57aa320762400882.tar.xz autobuild-b46cdc58b2e4139aa7450f4c57aa320762400882.zip |
Add err_conflictstrl and err_implicitdecl
-rw-r--r-- | bugscan.rb | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -30,6 +30,9 @@ $bug_matches = { "redefinition of .*struct mount_attr" => "err_mountcompat", "error: File not found:.*.egg-info" => "err_egginfomissing", # e.g. sword "error: '.*' is not a member of 'std'" => "err_stdinclude", # e.g. f3d + "implicit declaration of( built-in)? function" => "err_implicitdecl", # e.g. bwbasic + "error: conflicting types for 'strl" => "err_conflictstrl", # e.g. crash + # The following have more specific matches above "^ File not found:" => "err_packagedfilemissing", |