diff options
Diffstat (limited to 'src/buildtool/crypto/hash_function.hpp')
-rw-r--r-- | src/buildtool/crypto/hash_function.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buildtool/crypto/hash_function.hpp b/src/buildtool/crypto/hash_function.hpp index 0439ecc7..ac7cadcc 100644 --- a/src/buildtool/crypto/hash_function.hpp +++ b/src/buildtool/crypto/hash_function.hpp @@ -20,6 +20,8 @@ #include <optional> #include <string> +#include <gsl-lite/gsl-lite.hpp> + #include "src/buildtool/crypto/hasher.hpp" /// \brief Hash function used for the entire buildtool. @@ -69,6 +71,7 @@ class HashFunction { case JustHash::Compatible: return ::Hasher{Hasher::HashType::SHA256}; } + gsl_Ensures(false); // unreachable } private: |