Attempt to fix build by s/friend/friend class/. This still blows up later

though.
This commit is contained in:
Kris Kennaway 2002-09-07 03:16:29 +00:00
parent 1e0129ee3e
commit 7c56ecfa5c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=65759
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,11 @@
--- LinkedList.hh.orig Fri Sep 6 20:14:52 2002
+++ LinkedList.hh Fri Sep 6 20:14:58 2002
@@ -63,7 +63,7 @@
int elements;
__llist_node *_first, *_last;
- friend __llist_iterator;
+ friend class __llist_iterator;
protected:

View file

@ -0,0 +1,11 @@
--- LinkedList.hh.orig Fri Sep 6 20:14:52 2002
+++ LinkedList.hh Fri Sep 6 20:14:58 2002
@@ -63,7 +63,7 @@
int elements;
__llist_node *_first, *_last;
- friend __llist_iterator;
+ friend class __llist_iterator;
protected: