Add "gsl" to #includes (#1184)

Office is seeing build breaks due to `#include "span"` including
C++20 span instead of gsl/span. Most likely we want all headers
includes qualified with "gsl/" to avoid similar issues.
This commit is contained in:
Tiago
2025-01-07 06:42:38 -08:00
committed by GitHub
parent 1cdb8d295e
commit 7b6b8013b1
9 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -17,8 +17,8 @@
#ifndef GSL_ALGORITHM_H
#define GSL_ALGORITHM_H
#include "assert" // for Expects
#include "span" // for dynamic_extent, span
#include "gsl/assert" // for Expects
#include "gsl/span" // for dynamic_extent, span
#include <algorithm> // for copy_n
#include <cstddef> // for ptrdiff_t