Modified:
/trunk/Solver.cpp
=======================================
--- /trunk/Solver.cpp Sun Apr 3 11:18:14 2011
+++ /trunk/Solver.cpp Sun Apr 3 11:40:31 2011
@@ -636,7 +636,7 @@
int setcount = 0;
while (line != NULL) {
char* c = line;
- while ((c != '\0') && (!isnumber(*c))) {
+ while ((c != '\0') && (!isdigit(*c))) {
c++;
}
char* endp = NULL;
@@ -647,7 +647,7 @@
break;
}
c = endp;
- while ((c != '\0') && (!isnumber(*c))) {
+ while ((c != '\0') && (!isdigit(*c))) {
c++;
}
endp = NULL;