summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Günther <tom@toms-cafe.de>2005-10-29 16:08:06 +0200
committerThomas Günther <tom@toms-cafe.de>2005-10-29 16:08:06 +0200
commit90150fa47f0cd3807722617c9b4c61f814b67131 (patch)
tree97f51c36aef785876b6349e4b19e99ebf461e9d8
parenta0863e7f249e0a4eae8f71f8946cb90071fba985 (diff)
downloadvdr-plugin-sudoku-90150fa47f0cd3807722617c9b4c61f814b67131.tar.gz
vdr-plugin-sudoku-90150fa47f0cd3807722617c9b4c61f814b67131.tar.bz2
Fixed compiler warnings with gcc-4.0
-rw-r--r--HISTORY5
-rw-r--r--backtrack.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index dcf04ae..de72c40 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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: