[libc++] Remove workarounds for the lack of deduction guides in C++17

All supported compilers have supported deduction guides in C++17 for a
while, so this isn't necessary anymore.

Differential Revision: https://reviews.llvm.org/D108213
This commit is contained in:
Louis Dionne
2021-08-17 11:59:07 -04:00
parent 6f6175d1c6
commit 0166690401
82 changed files with 36 additions and 131 deletions

View File

@@ -8,7 +8,6 @@
// <string>
// UNSUPPORTED: c++03, c++11, c++14
// XFAIL: libcpp-no-deduction-guides
// template<class InputIterator>
// basic_string(InputIterator begin, InputIterator end,
@@ -24,7 +23,6 @@
// The deduction guide shall not participate in overload resolution if Allocator
// is a type that does not qualify as an allocator.
#include <string>
#include <string_view>
#include <iterator>