home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / pascal / rehack / contain / fixes.txt < prev    next >
Encoding:
Text File  |  1993-06-21  |  1.7 KB  |  51 lines

  1.  
  2. change *this++ to (*this)++ in ABSLIST.CPP
  3. change void operator ++ () in class abstract_index to
  4.        void operator ++ ( int ) in ABSLIST.H
  5. change #include <bitset.h> to #include "bitset.h" in BITSET.CPP
  6. change int containable::type = 0 to const int in CONTAIN.CPP
  7. change int sortable::type = 1 to const int in CONTAIN.CPP
  8. change int hashable::type = 2 to const int in CONTAIN.CPP
  9. change double_index::operator ++ () to double_index::operator ++ ( 1 )
  10. in HASH.CPP
  11. change *this++ to (*this)++ in LINKLIST.CPP
  12. change *this-- to (*this)-- in LINKLIST.CPP
  13. change virtual void operator -- () in class link_index to
  14.        void operator -- ( int ) in LINKLIST.H
  15. change virtual void operator -- () in class abstract_index to
  16.        void operator -- ( int ) in ABSLIST.H
  17. change void abstract_index::operator -- () {} to
  18.        void abstract_index::operator -- ( int ) {} in ABSLIST.CPP
  19. change virtual void operator -- () to
  20.        virtual void operator -- ( int ) in DOUBLE.H
  21. change void double_index::operator -- () to
  22.        void double_index::operator -- ( int ) in DOUBLE.CPP
  23. change void link_index::operator -- () to
  24.        void link_index::operator -- ( int ) in LINKLIST.CPP
  25. change void operator ++ () and void operator -- () in class hash_index to
  26.        void operator ++ ( int ) and void operator -- ( int ) in HASH.H
  27. change double_index::operator -- () to double_index::operator -- ( 1 ) in HASH.CPP
  28. change void hash_index::operator ++ () and void hash_index::operator -- () to
  29.        void hash_index::operator ++ ( int ) and void hash_index::operator ++ ( int )
  30.        in HASH.CPP
  31. change     *this++ to (*this)++ in SORTLIST.CPP
  32. change #include <strings.h> to #include "strings.h" in STRINGS.CPP
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.