ER-030 Avoid hardwired string literals

Severity3
Enabledyes
Waivable
Violation
arr[0] = "Hello World!";
arr[DIM - 1] = "Hello World!";
Fix
arr[0] = CONTENT;
arr[DIM - 1] = CONTENT;


Hammurapi 3 Copyright © 2004 Hammurapi Group. All Rights Reserved.