fixed missing ref in list decl

This commit is contained in:
Jeff Hill
1996-07-25 17:58:16 +00:00
parent c324b8f598
commit f1b751a3d3
2 changed files with 10 additions and 2 deletions

View File

@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.2 1996/07/24 22:12:02 jhill
* added remove() to iter class + made node's prev/next private
*
* Revision 1.1.1.1 1996/06/20 22:15:55 jhill
* installed ca server templates
*
@@ -42,6 +45,7 @@
#define INCresourceLibh
#include <limits.h>
#include <string.h>
#include <math.h>
#include <tsSLList.h>
@@ -160,7 +164,7 @@ public:
//
// T must derive from ID
//
tsSLList<T> list(this->pTable[this->hash(res)]);
tsSLList<T> &list(this->pTable[this->hash(res)]);
tsSLIter<T> iter(list);
this->find(iter, res);

View File

@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.2 1996/07/24 22:12:02 jhill
* added remove() to iter class + made node's prev/next private
*
* Revision 1.1.1.1 1996/06/20 22:15:55 jhill
* installed ca server templates
*
@@ -42,6 +45,7 @@
#define INCresourceLibh
#include <limits.h>
#include <string.h>
#include <math.h>
#include <tsSLList.h>
@@ -160,7 +164,7 @@ public:
//
// T must derive from ID
//
tsSLList<T> list(this->pTable[this->hash(res)]);
tsSLList<T> &list(this->pTable[this->hash(res)]);
tsSLIter<T> iter(list);
this->find(iter, res);