blob: b4cf47d635a9be85eeb507ed08637339542da083 (
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
29
30
31
32
33
34
35
36
|
diff -urN bbappconf-0.0.1-peak3/LinkedList.hh bbappconf-0.0.1-peak3-gcc-3.2/LinkedList.hh
--- bbappconf-0.0.1-peak3/LinkedList.hh 2000-10-11 13:58:32.000000000 -0400
+++ bbappconf-0.0.1-peak3-gcc-3.2/LinkedList.hh 2002-10-08 22:50:21.000000000 -0400
@@ -50,7 +50,7 @@
__llist *list;
__llist_node *node;
- friend __llist;
+ friend struct __llist;
protected:
@@ -73,7 +73,7 @@
__llist_node *_first, *_last;
__llist *iterators;
- friend __llist_iterator;
+ friend class __llist_iterator;
protected:
diff -urN bbappconf-0.0.1-peak3/Timer.hh bbappconf-0.0.1-peak3-gcc-3.2/Timer.hh
--- bbappconf-0.0.1-peak3/Timer.hh 1999-11-13 17:49:45.000000000 -0500
+++ bbappconf-0.0.1-peak3-gcc-3.2/Timer.hh 2002-10-08 22:50:28.000000000 -0400
@@ -47,7 +47,7 @@
class BTimer {
- friend BaseDisplay;
+ friend class BaseDisplay;
private:
BaseDisplay *display;
TimeoutHandler *handler;
|