mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
WFQueue empty const operation
This commit is contained in:
@@ -63,7 +63,7 @@ namespace gpgpu_virt::util {
|
||||
* @return true
|
||||
* @return false
|
||||
*/
|
||||
inline bool empty() { return tail->next == nullptr; }
|
||||
inline bool empty() const { return tail->next == nullptr; }
|
||||
};
|
||||
|
||||
inline void WFQueue::enqueue(Chain* item)
|
||||
|
||||
Reference in New Issue
Block a user