summaryrefslogtreecommitdiff
path: root/security/sfs/patches/patch-af
blob: c2f5bc4ae2b81b4c4db5715f27e0a1fe232d18f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
$NetBSD: patch-af,v 1.1 2006/10/21 11:53:13 agc Exp $

--- ./async/vec.h.orig	2002-05-28 11:29:16.000000000 +0100
+++ ./async/vec.h
@@ -72,7 +72,14 @@ public:
 };
 
 template<class T, size_t N = 0> class vec : public vec_base<T, N> {
+	
   typedef typename vec_base<T, N>::elm_t elm_t;
+
+  vec_base<T, N>::basep;
+  vec_base<T, N>::firstp;
+  vec_base<T, N>::lastp;
+  vec_base<T, N>::limp;
+
   void move (elm_t *dst) {
     if (dst == firstp)
       return;
@@ -92,7 +99,7 @@ template<class T, size_t N = 0> class ve
     { return *new (implicit_cast<void *> (&e)) elm_t (v); }
   static void destroy (elm_t &e) { e.~elm_t (); }
 
-  void init () { lastp = firstp = basep = def_basep (); limp = def_limp (); }
+  void init () { lastp = firstp = basep = this->def_basep (); limp = this->def_limp (); }
   void del () { while (firstp < lastp) firstp++->~elm_t (); bfree (basep); }
 
 #define append(v)						\