mohamedjawady / LMSHELL

Loop body is not enclosed in {} CXX-W1243
Anti-pattern
Minor
a year agoa year old
Loop body is not enclosed in {}
54{
55    int i, j;
56
57    for (i = 0; string[i] == ' ' || string[i] == '\t'; i++)58        ;59
60    for (j = 0; string[i]; i++)
61    {