diff options
author | Thomas Günther <tom@toms-cafe.de> | 2005-10-29 16:08:06 +0200 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2005-10-29 16:08:06 +0200 |
commit | 90150fa47f0cd3807722617c9b4c61f814b67131 (patch) | |
tree | 97f51c36aef785876b6349e4b19e99ebf461e9d8 | |
parent | a0863e7f249e0a4eae8f71f8946cb90071fba985 (diff) | |
download | vdr-plugin-sudoku-90150fa47f0cd3807722617c9b4c61f814b67131.tar.gz vdr-plugin-sudoku-90150fa47f0cd3807722617c9b4c61f814b67131.tar.bz2 |
Fixed compiler warnings with gcc-4.0
-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: |