mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
527 B

  1. --- ./lib/list.h.orig 2002-12-16 22:24:27.000000000 +0200
  2. +++ ./lib/list.h 2004-06-12 13:28:00.069138384 +0300
  3. @@ -111,8 +111,8 @@
  4. }
  5. private:
  6. const list<T>& lst;
  7. - const list<T>::node* prev;
  8. - const list<T>::node* curr;
  9. + const typename list<T>::node* prev;
  10. + const typename list<T>::node* curr;
  11. };
  12. template<class T>
  13. @@ -164,8 +164,8 @@
  14. }
  15. private:
  16. list<T>& lst;
  17. - list<T>::node* prev;
  18. - list<T>::node* curr;
  19. + typename list<T>::node* prev;
  20. + typename list<T>::node* curr;
  21. };
  22. template<class T>