summaryrefslogtreecommitdiff
path: root/src/Hash.hpp
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2021-07-06 21:19:57 +0200
committerJoel Rosdahl <joel@rosdahl.net>2021-07-07 09:13:05 +0200
commitca9ec9cfa8af99eb1e5c39c9dffdc1c611ed235c (patch)
tree11850d3daf3cc4c3a4b214a9c80567df961b6b8d /src/Hash.hpp
parent5d318eb1ef56b361bdfad2ee1f5af722391ef48a (diff)
downloadccache-ca9ec9cfa8af99eb1e5c39c9dffdc1c611ed235c.tar.gz
Remove system.hpp, including what’s needed instead
This is the next step after a57f70eda32e99221de56f5499079b4f00dc2bc5.
Diffstat (limited to 'src/Hash.hpp')
-rw-r--r--src/Hash.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Hash.hpp b/src/Hash.hpp
index d2686aff..02c5a4d1 100644
--- a/src/Hash.hpp
+++ b/src/Hash.hpp
@@ -1,4 +1,4 @@
-// Copyright (C) 2020 Joel Rosdahl and other contributors
+// Copyright (C) 2020-2021 Joel Rosdahl and other contributors
//
// See doc/AUTHORS.adoc for a complete list of contributors.
//
@@ -18,13 +18,14 @@
#pragma once
-#include "system.hpp"
-
#include "Digest.hpp"
#include "third_party/blake3/blake3.h"
#include "third_party/nonstd/string_view.hpp"
+#include <cstdint>
+#include <cstdio>
+
// This class represents a hash state.
class Hash
{