diff options
| author | 2023-07-01 22:38:18 -0400 | |
|---|---|---|
| committer | 2023-07-01 22:38:18 -0400 | |
| commit | 971b89b979cb3b903263234f3a6fdd2bceb03cbe (patch) | |
| tree | d32c8012765d9d94c57292ddfac3f84ec247a6e1 /src/common/ring_buffer.h | |
| parent | Merge pull request #10966 from Morph1984/heap-corruption (diff) | |
| parent | parcel: Optimize small_vector sizes (diff) | |
| download | yuzu-971b89b979cb3b903263234f3a6fdd2bceb03cbe.tar.gz yuzu-971b89b979cb3b903263234f3a6fdd2bceb03cbe.tar.xz yuzu-971b89b979cb3b903263234f3a6fdd2bceb03cbe.zip | |
Merge pull request #10970 from Morph1984/thing
general: Misc changes that did not deserve their own PRs
Diffstat (limited to 'src/common/ring_buffer.h')
| -rw-r--r-- | src/common/ring_buffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/ring_buffer.h b/src/common/ring_buffer.h index 416680d44..5c961b202 100644 --- a/src/common/ring_buffer.h +++ b/src/common/ring_buffer.h | |||
| @@ -54,7 +54,7 @@ public: | |||
| 54 | return push_count; | 54 | return push_count; |
| 55 | } | 55 | } |
| 56 | 56 | ||
| 57 | std::size_t Push(const std::span<T> input) { | 57 | std::size_t Push(std::span<const T> input) { |
| 58 | return Push(input.data(), input.size()); | 58 | return Push(input.data(), input.size()); |
| 59 | } | 59 | } |
| 60 | 60 | ||