aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/color.hpp1
-rw-r--r--src/util/fs.cpp3
-rw-r--r--src/util/ranges_impl.hpp1
3 files changed, 3 insertions, 2 deletions
diff --git a/src/util/color.hpp b/src/util/color.hpp
index 2bb147c..d209b36 100644
--- a/src/util/color.hpp
+++ b/src/util/color.hpp
@@ -1,5 +1,6 @@
#pragma once
+#include <cstdint>
#include <fmt/core.h>
#include <string>
diff --git a/src/util/fs.cpp b/src/util/fs.cpp
index 68c3dd9..87e3cc0 100644
--- a/src/util/fs.cpp
+++ b/src/util/fs.cpp
@@ -1,8 +1,9 @@
#include "fs.hpp"
-#include <cstdlib>
#include <pwd.h>
#include <unistd.h>
+#include <cstdlib>
+#include <string>
auto get_current_user_home_path() noexcept -> std::filesystem::path
{
diff --git a/src/util/ranges_impl.hpp b/src/util/ranges_impl.hpp
index b18a11c..1f1a577 100644
--- a/src/util/ranges_impl.hpp
+++ b/src/util/ranges_impl.hpp
@@ -57,4 +57,3 @@ IOTA_VIEW(auto)::end() const noexcept -> IotaViewIterator<Value>
{
return IotaViewIterator(_bound);
}
-