openbsd-ports/games/scummvm/patches/patch-common_hashmap_h

15 lines
417 B
Plaintext
Raw Normal View History

2007-07-06 21:37:53 -04:00
$OpenBSD: patch-common_hashmap_h,v 1.2 2007/07/07 01:37:53 jsg Exp $
--- common/hashmap.h.orig Tue Jun 26 21:57:02 2007
+++ common/hashmap.h Tue Jun 26 21:57:37 2007
@@ -88,10 +88,7 @@ template <class Key, class Val, class HashFunc = Hash<
2006-07-08 00:14:30 -04:00
class HashMap {
2007-07-06 21:37:53 -04:00
friend class const_iterator;
2006-07-08 00:14:30 -04:00
private:
2007-07-06 21:37:53 -04:00
-#if defined (PALMOS_MODE)
2006-07-08 00:14:30 -04:00
public:
-#endif
2007-07-06 21:37:53 -04:00
-
typedef HashMap<Key, Val, HashFunc, EqualFunc> HM_t;
struct Node {