Stupid sudoku bug

This commit is contained in:
BlackLight 2010-05-24 03:47:58 +02:00
parent ab2fac600b
commit 08f9e76783
2 changed files with 2 additions and 2 deletions

View File

@ -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
# be set by our smart program).
#

View File

@ -240,7 +240,7 @@ main ( int argc, char *argv[] )
printSudoku(csp);
}
catch (char* msg) {
catch (const char* msg) {
cerr << "Exception: " << msg << endl;
return EXIT_FAILURE;
}