Merge "Recognize new warning messages." am: b8f6f5dced am: 70a851d9c5

am: 4b62375ee1

Change-Id: Icdd94c9a133c791b417e75790b512701557b3f8b
This commit is contained in:
Chih-hung Hsieh 2016-08-24 21:06:00 +00:00 committed by android-build-merger
commit 8514848ae2
1 changed files with 1 additions and 4 deletions

View File

@ -1508,7 +1508,7 @@ warnpatterns = [
{ 'category':'C/C++', 'severity':severity.MEDIUM, 'members':[], 'option':'-Wconversion',
'description':'Conversion may change value',
'patterns':[r".*: warning: converting negative value '.+' to '.+'",
r".*: warning: conversion to '.+' .+ may alter its value"] },
r".*: warning: conversion to '.+' .+ may (alter|change)"] },
{ 'category':'C/C++', 'severity':severity.MEDIUM, 'members':[], 'option':'-Wconversion-null',
'description':'Converting to non-pointer type from NULL',
'patterns':[r".*: warning: converting to non-pointer type '.+' from NULL"] },
@ -1551,9 +1551,6 @@ warnpatterns = [
{ 'category':'C/C++', 'severity':severity.HIGH, 'members':[], 'option':'-Wextra',
'description':'Base should be explicitly initialized in copy constructor',
'patterns':[r".*: warning: base class '.+' should be explicitly initialized in the copy constructor"] },
{ 'category':'C/C++', 'severity':severity.MEDIUM, 'members':[], 'option':'',
'description':'Converting from <type> to <other type>',
'patterns':[r".*: warning: converting to '.+' from '.+'"] },
{ 'category':'C/C++', 'severity':severity.MEDIUM, 'members':[], 'option':'',
'description':'VLA has zero or negative size',
'patterns':[r".*: warning: Declared variable-length array \(VLA\) has .+ size"] },