From a231fd1c8afedbeb14b0bc77d76bad61db986059 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Thu, 2 May 2024 17:06:25 +1000 Subject: Replace cpp::span shim with std::span --- src/util/include/debug.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/util/include') diff --git a/src/util/include/debug.hpp b/src/util/include/debug.hpp index 620b0974..27fb2999 100644 --- a/src/util/include/debug.hpp +++ b/src/util/include/debug.hpp @@ -8,13 +8,12 @@ #include #include - +#include #include -#include "span.hpp" namespace util { -inline std::string format_hex_string(cpp::span data) { +inline std::string format_hex_string(std::span data) { std::ostringstream oss; std::ostringstream ascii_values; int count = 0; -- cgit v1.2.3