mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 14:57:34 +00:00
AK: Use size_t for CircularQueue and CircularDeque
This commit is contained in:
parent
88b9fcb976
commit
7592f9afd5
5 changed files with 19 additions and 15 deletions
|
@ -32,7 +32,7 @@
|
|||
|
||||
namespace AK {
|
||||
|
||||
template<typename T, int Capacity>
|
||||
template<typename T, size_t Capacity>
|
||||
class CircularDeque : public CircularQueue<T, Capacity> {
|
||||
public:
|
||||
T dequeue_end()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue