mirror of
https://github.com/microsoft/GSL.git
synced 2026-05-05 20:24:09 +02:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user