summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2026-02-13 10:50:54 +0100
committerJoel Klinghed <the_jk@spawned.biz>2026-02-13 10:50:54 +0100
commitab98c4b054b08fb255b601ce19810dff709fc4ce (patch)
treee2015f02d7d891c6598debfe2711c40368876fe6
parentaf4d4c6a4b94615e254b0730c86b6dc1b0bda69d (diff)
Add missing includes
-rw-r--r--src/db.hh1
-rw-r--r--src/query_parser.cc2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/db.hh b/src/db.hh
index dee3d74..e18bfaf 100644
--- a/src/db.hh
+++ b/src/db.hh
@@ -1,6 +1,7 @@
#ifndef DB_HH
#define DB_HH
+#include <cstdint>
#include <functional>
#include <memory>
#include <string>
diff --git a/src/query_parser.cc b/src/query_parser.cc
index d957063..d0e1e8c 100644
--- a/src/query_parser.cc
+++ b/src/query_parser.cc
@@ -1,5 +1,7 @@
#include "common.hh"
+#include <cstdint>
+
#include "query_parser.hh"
namespace stuff {