Update include/gsl/span

Co-Authored-By: Casey Carter <cartec69@gmail.com>
This commit is contained in:
Jordan Maples [MSFT] 2020-02-03 17:51:45 -08:00 committed by GitHub
parent f4ee6ee73b
commit 24646c6f7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,7 @@ namespace details
public:
using iterator_category = std::random_access_iterator_tag;
using value_type = std::remove_cv_t<type>;
using difference_type = ptrdiff_t;
using difference_type = std::ptrdiff_t;
using pointer = std::add_pointer_t<type>;
using reference = std::add_lvalue_reference_t<type>;