summaryrefslogtreecommitdiff
path: root/src/buildtool/crypto/hash_function.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/crypto/hash_function.hpp')
-rw-r--r--src/buildtool/crypto/hash_function.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buildtool/crypto/hash_function.hpp b/src/buildtool/crypto/hash_function.hpp
index ac7cadcc..44341777 100644
--- a/src/buildtool/crypto/hash_function.hpp
+++ b/src/buildtool/crypto/hash_function.hpp
@@ -20,10 +20,10 @@
#include <optional>
#include <string>
-#include <gsl-lite/gsl-lite.hpp>
-
#include "src/buildtool/crypto/hasher.hpp"
+#include <gsl/gsl>
+
/// \brief Hash function used for the entire buildtool.
class HashFunction {
public:
@@ -71,7 +71,7 @@ class HashFunction {
case JustHash::Compatible:
return ::Hasher{Hasher::HashType::SHA256};
}
- gsl_Ensures(false); // unreachable
+ Ensures(false); // unreachable
}
private: