mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 18:48:20 +00:00
Span: Remove deduction guideline for Iter, Iter, include cleanup
We don't have a constructor for that, so that's confusing, also <array> isn't used.
This commit is contained in:
parent
6a997af9a1
commit
8553fb96bd
1 changed files with 0 additions and 4 deletions
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <array>
|
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
@ -128,9 +127,6 @@ private:
|
||||||
template<class T>
|
template<class T>
|
||||||
Span(T*, size_t) -> Span<T>;
|
Span(T*, size_t) -> Span<T>;
|
||||||
|
|
||||||
template<class Iter>
|
|
||||||
Span(Iter, Iter) -> Span<typename std::iterator_traits<Iter>::value_type>;
|
|
||||||
|
|
||||||
template<class T, size_t N>
|
template<class T, size_t N>
|
||||||
Span(T (&)[N]) -> Span<T>;
|
Span(T (&)[N]) -> Span<T>;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue