Skip to content

Commit

Permalink
add missing import
Browse files Browse the repository at this point in the history
fix clang 14 / ubuntu 22 build
  • Loading branch information
incognitojam committed Aug 24, 2023
1 parent fa580de commit faaff7b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions services.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ def build_header():
h += "#define __SERVICES_H\n"

h += "#include <map>\n"
h += "#include <string>\n"

h += "struct service { std::string name; int port; bool should_log; int frequency; int decimation; };\n"
h += "static std::map<std::string, service> services = {\n"
Expand Down

0 comments on commit faaff7b

Please sign in to comment.