Skip to content
Snippets Groups Projects
  1. Apr 04, 2019
  2. Apr 01, 2019
  3. Mar 29, 2019
  4. Mar 27, 2019
  5. Mar 21, 2019
  6. Mar 17, 2019
  7. Mar 16, 2019
    • Lioncash's avatar
      common/thread_queue_list: Remove unnecessary dependency on boost · f71c5989
      Lioncash authored
      We really don't need to pull in several headers of boost related
      machinery just to perform the erase-remove idiom (particularly with
      C++20 around the corner, which adds universal container std::erase and
      std::erase_if, which we can just use instead).
      
      With this, we don't need to link in anything boost-related into common.
      f71c5989
  8. Mar 07, 2019
    • Lioncash's avatar
      common/bit_field: Make BitField trivially copyable · e99a1486
      Lioncash authored
      This makes the class much more flexible and doesn't make performing
      copies with classes that contain a bitfield member a pain.
      
      Given BitField instances are only intended to be used within unions, the
      fact the full storage value would be copied isn't a big concern (only
      sizeof(union_type) would be copied anyways).
      
      While we're at it, provide defaulted move constructors for consistency.
      e99a1486
  9. Mar 02, 2019
  10. Feb 27, 2019
  11. Feb 26, 2019
  12. Feb 24, 2019
    • tgsm's avatar
      Remove GCC version checks · 030814b1
      tgsm authored
      Citra can't be compiled using GCC <7 because of required C++17 support, so these version checks don't need to exist anymore.
      030814b1
  13. Feb 16, 2019
  14. Feb 15, 2019
  15. Feb 13, 2019
  16. Feb 12, 2019
  17. Feb 07, 2019
Loading