diff --git a/app/src/main/cpp/skyline/common/circular_queue.h b/app/src/main/cpp/skyline/common/circular_queue.h index 8a97c812..73eb5116 100644 --- a/app/src/main/cpp/skyline/common/circular_queue.h +++ b/app/src/main/cpp/skyline/common/circular_queue.h @@ -119,6 +119,9 @@ namespace skyline { } + /** + * @note The appended elements may not necessarily be directly contiguous as another thread could push elements in between those in the span + */ void Append(span buffer) { for (const auto &item : buffer) Push(item);