From 4e91ea50a01d9d415bb7e78545329781f5f012e2 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Mon, 25 Jul 2016 00:48:36 +0000 Subject: [PATCH] Don't SFINAE pair's copy assignment operator in C++03 mode. In C++03 mode evaluating the SFINAE can cause a hard error due to access control violations. This is a problem because the SFINAE is evaluated as soon as the class is instantiated, and not later. llvm-svn: 276594 --- libcxx/include/utility | 4 +++ .../pairs/pairs.pair/assign_pair_cxx03.pass.cpp | 36 ++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_pair_cxx03.pass.cpp diff --git a/libcxx/include/utility b/libcxx/include/utility index 66c3dd4..9a155a0 100644 --- a/libcxx/include/utility +++ b/libcxx/include/utility @@ -351,9 +351,13 @@ struct _LIBCPP_TYPE_VIS_ONLY pair typedef typename remove_reference<_T1>::type _T1Unref; typedef typename remove_reference<_T2>::type _T2Unref; +#if !defined(_LIBCPP_CXX03_LANG) typedef integral_constant::value && is_copy_assignable<_T2>::value> _CanCopyAssign; +#else + typedef true_type _CanCopyAssign; +#endif _LIBCPP_INLINE_VISIBILITY pair& operator=(typename conditional<_CanCopyAssign::value, pair, __nat>::type const& __p) diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_pair_cxx03.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_pair_cxx03.pass.cpp new file mode 100644 index 0000000..8b9d1ed --- /dev/null +++ b/libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_pair_cxx03.pass.cpp @@ -0,0 +1,36 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +// REQUIRES-ANY: c++98, c++03 + +// + +// template struct pair + +// pair& operator=(pair const& p); + +#include +#include +#include + + +struct NonAssignable { + NonAssignable() {} +private: + NonAssignable& operator=(NonAssignable const&); +}; + +int main() +{ + // Test that we don't constrain the assignment operator in C++03 mode. + // Since we don't have access control SFINAE having pair evaluate SFINAE + // may cause a hard error. + typedef std::pair P; + static_assert(std::is_copy_assignable

::value, ""); +} -- 2.7.4