Skip to content
Snippets Groups Projects
  1. Oct 16, 2018
  2. Oct 13, 2018
  3. Sep 19, 2018
    • Lioncash's avatar
      file-sys: Default heavy-weight class destructors in the cpp file · 05ef9dfc
      Lioncash authored
      Several classes have a lot of non-trivial members within them, or don't
      but likely should have the destructor defaulted in the cpp file for
      future-proofing/being more friendly to forward declarations.
      
      Leaving the destructor unspecified allows the compiler to inline the
      destruction code all over the place, which is generally undesirable from
      a code bloat perspective.
      05ef9dfc
  4. Sep 15, 2018
  5. Sep 04, 2018
  6. Aug 23, 2018
  7. Aug 10, 2018
  8. Aug 07, 2018
  9. Aug 04, 2018
  10. Aug 01, 2018
  11. Jul 27, 2018
  12. Jul 19, 2018
  13. Jul 08, 2018
  14. Jul 06, 2018
    • Zach Hilman's avatar
      Virtual Filesystem (#597) · 77c684c1
      Zach Hilman authored
      * Add VfsFile and VfsDirectory classes
      
      * Finish abstract Vfs classes
      
      * Implement RealVfsFile (computer fs backend)
      
      * Finish RealVfsFile and RealVfsDirectory
      
      * Finished OffsetVfsFile
      
      * More changes
      
      * Fix import paths
      
      * Major refactor
      
      * Remove double const
      
      * Use experimental/filesystem or filesystem depending on compiler
      
      * Port partition_filesystem
      
      * More changes
      
      * More Overhaul
      
      * FSP_SRV fixes
      
      * Fixes and testing
      
      * Try to get filesystem to compile
      
      * Filesystem on linux
      
      * Remove std::filesystem and document/test
      
      * Compile fixes
      
      * Missing include
      
      * Bug fixes
      
      * Fixes
      
      * Rename v_file and v_dir
      
      * clang-format fix
      
      * Rename NGLOG_* to LOG_*
      
      * Most review changes
      
      * Fix TODO
      
      * Guess 'main' to be Directory by filename
      77c684c1
Loading