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.

23 lines
723 B

  1. --- ./src/openhbci/tree.h.orig 2004-06-25 14:52:53.729307602 +0200
  2. +++ ./src/openhbci/tree.h 2004-06-25 14:53:01.057222682 +0200
  3. @@ -695,16 +695,16 @@
  4. * Returns an iterator that points to the root of the tree.
  5. * @author Martin Preuss<martin@aquamaniac.de>
  6. */
  7. - Tree<T>::iterator root() {
  8. - return Tree<T>::iterator(&_root);
  9. + iterator root() {
  10. + return iterator(&_root);
  11. };
  12. /**
  13. * Returns an const_iterator that points to the root of the tree.
  14. * @author Martin Preuss<martin@aquamaniac.de>
  15. */
  16. - Tree<T>::const_iterator const_root() const {
  17. - return Tree<T>::const_iterator(&_root);
  18. + const_iterator const_root() const {
  19. + return const_iterator(&_root);
  20. };
  21. /**