1. 30 Aug, 2023 4 commits
  2. 29 Aug, 2023 14 commits
  3. 28 Aug, 2023 5 commits
  4. 27 Aug, 2023 7 commits
  5. 26 Aug, 2023 6 commits
  6. 25 Aug, 2023 4 commits
    • Liam's avatar
      Skip additional mbedcrypto warnings options on MSVC · 6bb02dcb
      Liam authored
      6bb02dcb
    • comex's avatar
    • comex's avatar
      Warnings cleanup for GCC 13 and Clang 16 · 91eb5afd
      comex authored
      Note: For GCC there are still a huge number of `-Warray-bounds` warnings
      coming from `externals/dynarmic`.  I could have added a workaround in
      `externals/CMakeLists.txt` similar to what this PR does for other
      externals, but given Dynarmic's close affiliation with Yuzu, it would be
      better to fix it upstream.
      
      Besides that, on my machine, this makes the build warning-free except
      for some warnings from glslangValidator and AutoMoc.
      
      Details:
      
      - Disable some warnings in externals.
      
      - Disable `-Wnullability-completeness`, which is a Clang warning triggered
        by the Vulkan SDK where if any pointers in the header are marked
        _Nullable, it wants all pointers to be marked _Nullable or _Nonnull.
        Most of them are, but some aren't.  Who knows why.
      
      - `src/web_service/verify_user_jwt.cpp`: Disable another warning when
        including `jwt.hpp`.
      
      - `src/input_common/input_poller.cpp`: Add missing `override` specifiers.
      
      - src/common/swap.h: Remove redundant `operator&`.  In general, this
        file declares three overloads of each operator.  Using `+` as an
        example, the overloads are:
      
        - a member function for `swapped_t + integer`
        - a member function for `swapped_t + swapped_t`
        - a free function for `integer + swapped_t`
      
        But for `operator&`, there was an additional free function for
        `swapped_t + integer`, which was redundant with the member function.
        This caused a GCC warning saying "ISO C++ says that these are
        ambiguous".
      91eb5afd
    • liamwhite's avatar
      Merge pull request #11377 from BenjaminHalko/reverse-slider-input · bc4e58eb
      liamwhite authored
      ui: Fixed inverted controls on ReverseSlider widgets
      bc4e58eb