summarylogtreecommitdiffstats
path: root/use-std-span.patch
blob: d1341eab5f9c4488ff89f0b95431ab6ec3a6a285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/tools/mxl-info/main.cpp b/tools/mxl-info/main.cpp
index 48b3db5..4f75695 100644
--- a/tools/mxl-info/main.cpp
+++ b/tools/mxl-info/main.cpp
@@ -13,7 +13,6 @@
 #include <CLI/CLI.hpp>
 #include <fmt/color.h>
 #include <fmt/format.h>
-#include <gsl/span>
 #include <picojson/wrapper.h>
 #include <mxl/flow.h>
 #include <mxl/flowinfo.h>
@@ -98,7 +97,7 @@ namespace
 
         std::ostream& operator<<(std::ostream& os, mxlFlowInfo const& info)
         {
-            auto const span = uuids::span<std::uint8_t, sizeof info.config.common.id>{
+            auto const span = std::span<std::uint8_t, sizeof info.config.common.id>{
                 const_cast<std::uint8_t*>(info.config.common.id), sizeof info.config.common.id};
             auto const id = uuids::uuid(span);
             os << "- Flow [" << uuids::to_string(id) << ']' << '\n'