Formatting

This commit is contained in:
Dale Weiler 2012-04-10 01:06:33 -04:00
parent 620fe55b11
commit 4c23a669aa

4
lex.c
View file

@ -286,9 +286,9 @@ int lex_token(struct lex_file *file) {
#define TEST_TYPE(X) \
do { \
if (!strncmp(X, "float", sizeof("float"))) \
return TOKEN_FLOAT; \
return TOKEN_FLOAT; \
if (!strncmp(X, "vector", sizeof("vector"))) \
return TOKEN_VECTOR; \
return TOKEN_VECTOR; \
if (!strncmp(X, "string", sizeof("string"))) \
return TOKEN_STRING; \
if (!strncmp(X, "entity", sizeof("entity"))) \