Format tweaks
This commit is contained in:
parent
97c2744a16
commit
be8eea9eda
5 changed files with 9 additions and 11 deletions
|
@ -447,11 +447,11 @@ int main(int argc, char* argv[])
|
|||
{
|
||||
if (isFloat)
|
||||
{
|
||||
defines[defineIndex].type = linePtr[j-1] == 'f' ? FLOAT : DOUBLE;
|
||||
defines[defineIndex].type = (linePtr[j-1] == 'f')? FLOAT : DOUBLE;
|
||||
}
|
||||
else
|
||||
{
|
||||
defines[defineIndex].type = linePtr[j-1] == 'L' ? LONG : INT;
|
||||
defines[defineIndex].type = (linePtr[j-1] == 'L')? LONG : INT;
|
||||
defines[defineIndex].isHex = isHex;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue