From faaff7bc321356c002918da389e71dda79a42eca Mon Sep 17 00:00:00 2001 From: Cameron Clough Date: Thu, 24 Aug 2023 12:12:42 +0100 Subject: [PATCH] add missing import fix clang 14 / ubuntu 22 build --- services.py | 1 + 1 file changed, 1 insertion(+) diff --git a/services.py b/services.py index da99a4094..4e18d5971 100755 --- a/services.py +++ b/services.py @@ -107,6 +107,7 @@ def build_header(): h += "#define __SERVICES_H\n" h += "#include \n" + h += "#include \n" h += "struct service { std::string name; int port; bool should_log; int frequency; int decimation; };\n" h += "static std::map services = {\n"