Skip to content
Snippets Groups Projects
  1. May 28, 2019
  2. May 23, 2019
  3. May 22, 2019
  4. May 21, 2019
  5. May 20, 2019
  6. May 17, 2019
  7. May 15, 2019
  8. May 10, 2019
  9. May 07, 2019
  10. Apr 29, 2019
  11. Apr 15, 2019
  12. Apr 09, 2019
  13. Apr 05, 2019
  14. Feb 27, 2019
  15. Feb 25, 2019
  16. Feb 22, 2019
  17. Feb 19, 2019
  18. Feb 14, 2019
  19. Feb 12, 2019
  20. Feb 11, 2019
    • Steven Murray's avatar
      ArchiveFileItor::next() is no longer const. · 860cdc00
      Steven Murray authored
      Woah!  Got carried away with const.  This commit Removes the const
      qualifier from the ArchiveFileItor::next() method because next()
      modifies the iterator.
      
      To loop through an ArchiveFileItor:
      
        auto itor = catalogue.getArchiveFilesForRepackItor(vid, startFSeq);
        while(itor.hasMore()) {
          const auto archiveFile = itor.next();
          // Do something with archiveFile
        }
      860cdc00
Loading