1
Fork 0
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:
Andreas Kling 2020-02-20 13:18:42 +01:00
parent 88b9fcb976
commit 7592f9afd5
5 changed files with 19 additions and 15 deletions

View file

@ -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()