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
Issue with debug assertions when using isdigit, isalpha lk functions processing various coordinate formats:
Running this script in Debug mode in Windows, I get an assertion failed error from the LK isdigit() function in lk\src\stdlib.cpp. The script runs fine in Release mode.
x = '51°30′26″N 0°7′39″W';
outln(x);
for (i=0; i<strlen(x); i++ ) {
c = ch(x,i);
d = isdigit(c);
a = isalpha(c);
outln(c + ' ' + d + ' ' + a);
}
The text was updated successfully, but these errors were encountered:
Issue with debug assertions when using isdigit, isalpha lk functions processing various coordinate formats:
Running this script in Debug mode in Windows, I get an assertion failed error from the LK isdigit() function in lk\src\stdlib.cpp. The script runs fine in Release mode.
x = '51°30′26″N 0°7′39″W';
outln(x);
for (i=0; i<strlen(x); i++ ) {
c = ch(x,i);
d = isdigit(c);
a = isalpha(c);
outln(c + ' ' + d + ' ' + a);
}
The text was updated successfully, but these errors were encountered: