fix syntax

This commit is contained in:
espie 2010-05-22 11:34:22 +00:00
parent 725f4836b7
commit 066e590bb4
2 changed files with 23 additions and 2 deletions

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-cmn_utils_cpp,v 1.1 2007/12/07 15:54:56 ajacoutot Exp $
$OpenBSD: patch-cmn_utils_cpp,v 1.2 2010/05/22 11:38:57 espie Exp $
--- cmn/utils.cpp.orig Wed Mar 19 10:05:12 2003
+++ cmn/utils.cpp Fri Dec 7 14:27:50 2007
+++ cmn/utils.cpp Sat May 22 13:36:31 2010
@@ -30,18 +30,21 @@
// Include Files
@ -29,3 +29,12 @@ $OpenBSD: patch-cmn_utils_cpp,v 1.1 2007/12/07 15:54:56 ajacoutot Exp $
#ifdef WIN32
// For file manipulation routines.
#include <direct.h>
@@ -761,7 +764,7 @@ class HashTable: public IDictionary { (public)
private:
- Bucket* HashTable::_get(int &index,void* key);
+ Bucket* _get(int &index,void* key);
/* MODIFIES: index */
/* EFFECTS: Internal helper function. Return the Bucket containing key
or NULL if not found. Set index to the bucket list for key whether

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-kountdown_kdtimer_h,v 1.1 2010/05/22 11:34:22 espie Exp $
--- kountdown/kdtimer.h.orig Sat May 22 13:31:33 2010
+++ kountdown/kdtimer.h Sat May 22 13:31:41 2010
@@ -26,7 +26,7 @@ namespace KD
{
enum TIME { NIL = 0, SECS = 1, MINS = 2, HOURS = 4, DAYS = 8, WEEKS = 16, MONTHS = 32, YEARS = 64, ALL = 127 };
enum ROUND { NONE, UP };
-};
+}
/**
* The struct that is returned when asking for time left, and which contains all the time.