diff options
| -rw-r--r-- | HISTORY | 5 | ||||
| -rw-r--r-- | backtrack.h | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -4,3 +4,8 @@ VDR Plugin 'sudoku' Revision History 2005-10-28: Version 0.1.0 - Initial revision. + +2005- - : Version 0.1.1 + +- Fixed compiler warnings with gcc-4.0 (thanks to Ville Skyttä for reporting + this). diff --git a/backtrack.h b/backtrack.h index 263e1dc..d1048b8 100644 --- a/backtrack.h +++ b/backtrack.h @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: backtrack.h 11 2005-10-28 01:00:01Z tom $ + * $Id: backtrack.h 14 2005-10-29 14:08:06Z tom $ */ #ifndef VDR_SUDOKU_BACKTRACK_H @@ -131,7 +131,7 @@ namespace BackTrack /** Reset the decision tree, i.e. the next call to 'find_solution' finds * the first valid solution. */ - virtual void reset(); + void reset(); private: |
