Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prevent
int-conversion
error from Intel compiler icx
Error message: ``` $TSMP/models/CLM3.5/src/utils/timing/gptl.c:182:28: error: incompatible pointer to integer conversion assigning to 'unsigned int' from 'void *' [-Wint-conversion] current_depth[t].depth = NULL; ^ ~~~~ $TSMP/models/CLM3.5/src/utils/timing/gptl.c:183:22: error: incompatible pointer to integer conversion assigning to 'int' from 'void *' [-Wint-conversion] max_depth[t] = NULL; ^ ~~~~ $TSMP/models/CLM3.5/src/utils/timing/gptl.c:184:22: error: incompatible pointer to integer conversion assigning to 'int' from 'void *' [-Wint-conversion] max_name_len[t] = NULL; ^ ~~~~ 3 errors generated. ```
- Loading branch information