aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authornicole mazzuca <mazzucan@outlook.com>2020-11-19 21:39:08 -0800
committerGitHub <noreply@github.com>2020-11-19 21:39:08 -0800
commite803bf11296d8e7900dafb41e7b1224778d33dc6 (patch)
tree7065d38889979737c11e3cc43de58beb4267439c /toolsrc/include
parent88de49b139c620835e841c58b9eae486b45d1bd3 (diff)
downloadvcpkg-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.h5
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>>