suyu/src
comex 3373149fdc hle: Type check ResponseBuilder::Push arguments, and fix use in vi.cpp
- Add a type check so that calling Push with an invalid type produces a
  compile error rather than a linker error.

- vi.cpp was calling Push with a variable of type `std::size_t`.
  There's no explicit overload for `size_t`, but there is one for `u64`,
  which on most platforms is the same type as `size_t`.  On macOS,
  however, it isn't: both types are 64 bits, but `size_t` is `unsigned
  long` and `u64` is `unsigned long long`.  Regardless, it makes more
  sense to explicitly use `u64` here instead of `size_t`.
2020-12-06 18:59:22 -05:00
..
audio_core Update cubeb and request a persistent stream session 2020-12-05 22:26:41 +01:00
common xbyak_abi: Shorten std::size_t to size_t 2020-12-05 00:43:55 -05:00
core hle: Type check ResponseBuilder::Push arguments, and fix use in vi.cpp 2020-12-06 18:59:22 -05:00
input_common mouse_poller: Remove unused includes 2020-12-03 10:41:13 -05:00
tests tests: Fix warning about comparison between signed and unsigned 2020-11-27 17:41:20 -05:00
video_core video_core: Adjust NUM macro to avoid Clang warning 2020-12-06 18:24:16 -05:00
web_service web_service: follow-up fix to #4842 ... 2020-10-28 23:16:06 -06:00
yuzu game_list_p: Resolve deprecated usage of QVariant operator< 2020-12-05 15:38:58 -05:00
yuzu_cmd yuzu_cmd: Remove 'users_size' 2020-12-05 17:50:39 -05:00
yuzu_tester core: Eliminate remaining usages of the global system instance 2020-11-27 11:40:45 -05:00
.clang-format
CMakeLists.txt CMakeLists: disable -Winvalid-offsetof 2020-11-27 17:42:02 -05:00