diff options
author | bunnei <bunneidev@gmail.com> | 2023-02-02 19:04:50 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-02 19:04:50 -0800 |
commit | 25fc5c0e1158cb8e81cbc769b24ad84032a1fbfd (patch) | |
tree | a86c945d2e8789250005ac38ebbb36c48e95b30c /src/core/reporter.h | |
parent | af20e25081f97d55b451606c87922e2b49f0d363 (diff) | |
parent | b01698775b468a04e4d0a9bdd86035ff00e6decb (diff) |
Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span
Revert "hle_ipc: Use std::span to avoid heap allocations/copies when calling ReadBuffer"
Diffstat (limited to 'src/core/reporter.h')
-rw-r--r-- | src/core/reporter.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/reporter.h b/src/core/reporter.h index bb11f8e7c..9fdb9d6c1 100644 --- a/src/core/reporter.h +++ b/src/core/reporter.h @@ -5,7 +5,6 @@ #include <array> #include <optional> -#include <span> #include <string> #include <vector> #include "common/common_types.h" @@ -57,8 +56,7 @@ public: System, }; - void SavePlayReport(PlayReportType type, u64 title_id, - const std::vector<std::span<const u8>>& data, + void SavePlayReport(PlayReportType type, u64 title_id, const std::vector<std::vector<u8>>& data, std::optional<u64> process_id = {}, std::optional<u128> user_id = {}) const; // Used by error applet |