Revert r304955 - Fix class template deduction for scoped_lock.

Richard decided to fix these cases in Clang, even though they are
representative of a larger problem for more complex
cases.

llvm-svn: 304966
This commit is contained in:
Eric Fiselier 2017-06-08 07:18:15 +00:00
parent 79271ab154
commit 1ef13310b8
1 changed files with 0 additions and 5 deletions

View File

@ -546,11 +546,6 @@ private:
_MutexTuple __t_;
};
#ifdef __cpp_deduction_guides
template <class _Mutex> explicit scoped_lock(_Mutex&) -> scoped_lock<_Mutex>;
explicit scoped_lock() -> scoped_lock<>;
#endif
#endif // _LIBCPP_STD_VER > 14
#endif // !_LIBCPP_HAS_NO_THREADS