mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 13:58:08 -05:00
ring_buffer: Fix const usage on std::span
This commit is contained in:
@ -54,7 +54,7 @@ public:
|
|||||||
return push_count;
|
return push_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::size_t Push(const std::span<T> input) {
|
std::size_t Push(std::span<const T> input) {
|
||||||
return Push(input.data(), input.size());
|
return Push(input.data(), input.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user