From ead5bcf04895fdce0a1db565651817faaf61ce06 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 19 Nov 2021 15:51:04 +0100 Subject: [PATCH] queue/IdTable: make size const --- src/queue/IdTable.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/queue/IdTable.hxx b/src/queue/IdTable.hxx index 3f652e204..7c55869ff 100644 --- a/src/queue/IdTable.hxx +++ b/src/queue/IdTable.hxx @@ -29,7 +29,7 @@ * A table that maps id numbers to position numbers. */ class IdTable { - unsigned size; + const unsigned size; unsigned next;