mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-08-25 13:36:45 -05:00
ring_buffer: Fix const usage on std::span
This commit is contained in:
@@ -54,7 +54,7 @@ public:
|
||||
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());
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user