forked from ShuriZma/suyu
1
0
Fork 0

sink_stream: Mark GetQueueSize as const

This commit is contained in:
Lioncash 2022-09-16 10:00:52 -04:00
parent 6b1cb73350
commit d5d6322640
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ public:
*
* @return The number of queued buffers.
*/
u32 GetQueueSize() {
u32 GetQueueSize() const {
return queued_buffers.load();
}