comparison src/SLStack.cc @ 2580:fa7dd5fc7c59

[project @ 1996-12-10 06:30:41 by jwe]
author jwe
date Tue, 10 Dec 1996 06:33:51 +0000
parents 6e1d6e02fd8c
children 6e86256e9c54
comparison
equal deleted inserted replaced
2579:6e1d6e02fd8c 2580:fa7dd5fc7c59
25 #endif 25 #endif
26 26
27 #include "SLStack.h" 27 #include "SLStack.h"
28 28
29 template <class T> 29 template <class T>
30 SLStack<T>&
30 SLStack<T>::operator = (const SLStack<T>& s) 31 SLStack<T>::operator = (const SLStack<T>& s)
31 { 32 {
32 if (this != &s) 33 if (this != &s)
33 p = s.p; 34 p = s.p;
34 35