summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2024-02-25 09:13:29 +0100
committerJoel Klinghed <the_jk@spawned.biz>2024-02-25 09:13:29 +0100
commit220beda2ae9dc979907c7f83ac061e553798665f (patch)
treee93db53f4d933a42629e6ab9fb2cd008299a537f
parent67935d092c6603c54e068f36ca9c3bc6434d5fbe (diff)
Add missing includes
Code compiled earlier because of implicit includes but libc++ has been cleaning that up.
-rw-r--r--src/tz_str.cc1
-rw-r--r--src/urlutil.cc1
-rw-r--r--test/test_daemon.cc1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/tz_str.cc b/src/tz_str.cc
index 207f15d..6294f7e 100644
--- a/src/tz_str.cc
+++ b/src/tz_str.cc
@@ -3,6 +3,7 @@
#include "tz_str.hh"
#include <math.h>
+#include <stdint.h>
namespace tz {
diff --git a/src/urlutil.cc b/src/urlutil.cc
index 00ec713..9367b98 100644
--- a/src/urlutil.cc
+++ b/src/urlutil.cc
@@ -3,6 +3,7 @@
#include "urlutil.hh"
#include <optional>
+#include <stdint.h>
namespace url {
diff --git a/test/test_daemon.cc b/test/test_daemon.cc
index e2c0db7..05d11b6 100644
--- a/test/test_daemon.cc
+++ b/test/test_daemon.cc
@@ -6,6 +6,7 @@
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <memory>
+#include <stdarg.h>
namespace {