clang-tidy parser and executor #26

Merged
张泊明518370910136 merged 26 commits from clang-tidy into master 2024-05-18 02:50:13 +08:00
Showing only changes of commit 3aa0b2e422 - Show all commits

View File

@ -67,8 +67,8 @@ func levelFromString(levelString string) Level {
} }
func isIgnored(line string) bool { func isIgnored(line string) bool {
ignore_Regex := regexp.MustCompile("^error:.*$") ignoreRegex := regexp.MustCompile("^error:.*$")
return ignore_Regex.MatchString(line) return ignoreRegex.MatchString(line)
} }
func parseMessage(line string) ClangMessage { func parseMessage(line string) ClangMessage {