From b46cdc58b2e4139aa7450f4c57aa320762400882 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Mon, 1 Apr 2024 15:55:01 -0700 Subject: Add err_conflictstrl and err_implicitdecl --- bugscan.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bugscan.rb b/bugscan.rb index bda233a..12fa7d8 100644 --- a/bugscan.rb +++ b/bugscan.rb @@ -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", -- cgit v1.2.1