Improving warning categorization

This commit is contained in:
Hackerpilot 2014-08-20 17:26:46 -07:00
parent c6e21d4701
commit 1689e22626
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class AsmStyleCheck : BaseAnalyzer
{
if (brExp.asmBrExp !is null)
{
addErrorMessage(brExp.line, brExp.column,
addErrorMessage(brExp.line, brExp.column, "dscanner.confusing.brexp",
"This is confusing because it looks like an array index. Rewrite a[1] as [a + 1] to clarify.");
}
brExp.accept(this);