summaryrefslogtreecommitdiff
path: root/src/utils/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/cpp')
-rw-r--r--src/utils/cpp/gsl.hpp2
-rw-r--r--src/utils/cpp/verify_hash.hpp3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/utils/cpp/gsl.hpp b/src/utils/cpp/gsl.hpp
index 882df29b..97e0afe7 100644
--- a/src/utils/cpp/gsl.hpp
+++ b/src/utils/cpp/gsl.hpp
@@ -15,7 +15,7 @@
#ifndef INCLUDED_SRC_UTILS_CPP_GSL_HPP
#define INCLUDED_SRC_UTILS_CPP_GSL_HPP
-#include <gsl/gsl>
+#include "gsl/gsl"
// implement EnsuresAudit/ExpectsAudit (from gsl-lite) only run in debug mode
#ifdef NDEBUG
diff --git a/src/utils/cpp/verify_hash.hpp b/src/utils/cpp/verify_hash.hpp
index ab2a4b45..4ec3a30b 100644
--- a/src/utils/cpp/verify_hash.hpp
+++ b/src/utils/cpp/verify_hash.hpp
@@ -19,7 +19,8 @@
#include <optional>
#include <string>
-#include <fmt/core.h>
+#include "fmt/core.h"
+
/// \brief Check if the passed string \p s is a hash.
/// This function is mainly used to check that the hash of a Digest received
/// over the wire is a real hash, to prevent a malicious attack.