Skip to content
Snippets Groups Projects
  1. Dec 27, 2018
  2. Oct 29, 2018
  3. Oct 14, 2018
  4. 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
    • Lioncash's avatar
      control_metadata: Move language name array definition to the cpp file · 05d49962
      Lioncash authored
      This was used in two different translation units
      (deconstructed_rom_directory and patch_manager). This means we'd be
      pointlessly duplicating the whole array twice due to it being defined
      within the header.
      05d49962
  5. Sep 04, 2018
  6. Aug 12, 2018
  7. Aug 07, 2018
  8. Jul 23, 2018
Loading