added a new debugging macro HCL_DEBUG_LEXER

removed the debugging macro HCL_DBEUG_BIGINT
This commit is contained in:
2018-02-21 13:02:05 +00:00
parent c12b85e0a0
commit 25e4bb040c
2 changed files with 10 additions and 6 deletions

View File

@ -1196,7 +1196,9 @@ retry:
break;
}
HCL_DEBUG2 (hcl, "TOKEN: [%.*js]\n", (hcl_ooi_t)TOKEN_NAME_LEN(hcl), TOKEN_NAME_PTR(hcl));
#if defined(HCL_DEBUG_LEXER)
HCL_DEBUG2 (hcl, "TOKEN: [%.*js]\n", (hcl_ooi_t)TOKEN_NAME_LEN(hcl), TOKEN_NAME_PTR(hcl));
#endif
return 0;
}