diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2026-02-13 10:50:54 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2026-02-13 10:50:54 +0100 |
| commit | ab98c4b054b08fb255b601ce19810dff709fc4ce (patch) | |
| tree | e2015f02d7d891c6598debfe2711c40368876fe6 | |
| parent | af4d4c6a4b94615e254b0730c86b6dc1b0bda69d (diff) | |
Add missing includes
| -rw-r--r-- | src/db.hh | 1 | ||||
| -rw-r--r-- | src/query_parser.cc | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -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 { |
