From 56aed31bbbc7c5bd59ea40052e5299f218258450 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Wed, 21 Jun 2023 09:29:21 +0000 Subject: [PATCH] add missing include With GCC 13 the header isn't included thru other headers any more, thus include it explictly. Otherwise uint8_t or uint32_t type remain undefined in Vector.cc. Fixes: https://github.com/OPENDAP/libdap4/issues/226 --- Vector.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/Vector.cc b/Vector.cc index ec86ed46a..618b2922a 100644 --- a/Vector.cc +++ b/Vector.cc @@ -37,6 +37,7 @@ #include #include +#include #include #include