mirror of
https://github.com/BlackLight/libCSP--.git
synced 2024-11-24 04:35:12 +01:00
Stupid sudoku bug
This commit is contained in:
parent
ab2fac600b
commit
08f9e76783
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# sudoku.txt - Sample sudoky 2x2x2 that our program can understand
|
# sudoku.txt - Sample sudoky two-sized that our program can understand
|
||||||
# Place a zero to identify an unset cell (that, of course, should
|
# Place a zero to identify an unset cell (that, of course, should
|
||||||
# be set by our smart program).
|
# be set by our smart program).
|
||||||
#
|
#
|
||||||
|
|
|
@ -240,7 +240,7 @@ main ( int argc, char *argv[] )
|
||||||
printSudoku(csp);
|
printSudoku(csp);
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (char* msg) {
|
catch (const char* msg) {
|
||||||
cerr << "Exception: " << msg << endl;
|
cerr << "Exception: " << msg << endl;
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue