sink_stream: Mark GetQueueSize as const

master
Lioncash 2022-09-16 10:00:52 +07:00
parent 6b1cb73350
commit d5d6322640
1 changed files with 1 additions and 1 deletions

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