diff options
| author | nicole mazzuca <mazzucan@outlook.com> | 2020-11-19 21:39:08 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-19 21:39:08 -0800 |
| commit | e803bf11296d8e7900dafb41e7b1224778d33dc6 (patch) | |
| tree | 7065d38889979737c11e3cc43de58beb4267439c /toolsrc/include | |
| parent | 88de49b139c620835e841c58b9eae486b45d1bd3 (diff) | |
| download | vcpkg-e803bf11296d8e7900dafb41e7b1224778d33dc6.tar.gz vcpkg-e803bf11296d8e7900dafb41e7b1224778d33dc6.zip | |
[vcpkg] fix cmake paths in tags (alternative 2) (#14661)
* [vcpkg] fix cmake paths in tags (alternative 2)
* fix compile on VS2019
unnecessary and invalid SFINAE'd constructor
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg/base/span.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/toolsrc/include/vcpkg/base/span.h b/toolsrc/include/vcpkg/base/span.h index 91d94ec47..7748222cf 100644 --- a/toolsrc/include/vcpkg/base/span.h +++ b/toolsrc/include/vcpkg/base/span.h @@ -32,11 +32,6 @@ namespace vcpkg { } - template<size_t N, class = std::enable_if_t<std::is_const<T>::value>> - constexpr Span(std::remove_const_t<T> (&arr)[N]) noexcept : m_ptr(arr), m_count(N) - { - } - template<class Range, class = decltype(std::declval<Range>().data()), class = std::enable_if_t<!std::is_same<std::decay_t<Range>, Span>::value>> |
