You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GDIT is testing a static analysis tool called Codee (https://www.codee.com/). Codee flagged an issue in the ncdiag code. The code uses the int8(arg) routine to convert its argument into a 64-bit integer. Codee didn't recognise this routine and refused to process the files that contain it. I replaced int8(arg) with int(arg,8) which appears to be the standard compliant way to accomplish this conversion. My sandbox contains the following modified files.
GDIT is testing a static analysis tool called Codee (https://www.codee.com/). Codee flagged an issue in the ncdiag code. The code uses the int8(arg) routine to convert its argument into a 64-bit integer. Codee didn't recognise this routine and refused to process the files that contain it. I replaced int8(arg) with int(arg,8) which appears to be the standard compliant way to accomplish this conversion. My sandbox contains the following modified files.
The text was updated successfully, but these errors were encountered: