From 0bb2e61e9e4bd5890ab17c548d50a79938876f24 Mon Sep 17 00:00:00 2001 From: Johannes Schlatow Date: Mon, 17 Jan 2022 10:51:35 +0100 Subject: [PATCH] Allow derived classes of Genode::Array genodelabs/genode#4382 --- repos/base/include/util/array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/base/include/util/array.h b/repos/base/include/util/array.h index 2944d39fc7..3fd1467ead 100644 --- a/repos/base/include/util/array.h +++ b/repos/base/include/util/array.h @@ -26,7 +26,7 @@ namespace Genode { template class Array; } template class Genode::Array { - private: + protected: unsigned _count { 0 }; T _objs[MAX];