summaryrefslogtreecommitdiff
path: root/include/functional
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2015-05-19 22:27:18 +0000
committerEric Fiselier <eric@efcs.ca>2015-05-19 22:27:18 +0000
commit5486fac53c3b71aa4b72edd2b612d805b831bf06 (patch)
tree6141c43b72d4a7b6cad2a0e344a90ceeb66ea68e /include/functional
parenta985b8cc79c163b842d87d1728b88aeb8184ea4f (diff)
Rename internal trait that used non-reserved name.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@237737 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/functional')
-rw-r--r--include/functional8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/functional b/include/functional
index a5a212cc8..7a9d68d3c 100644
--- a/include/functional
+++ b/include/functional
@@ -1996,27 +1996,27 @@ struct __mu_return
};
template <class _Fp, class _BoundArgs, class _TupleUj>
-struct _is_valid_bind_return
+struct __is_valid_bind_return
{
static const bool value = false;
};
template <class _Fp, class ..._BoundArgs, class _TupleUj>
-struct _is_valid_bind_return<_Fp, tuple<_BoundArgs...>, _TupleUj>
+struct __is_valid_bind_return<_Fp, tuple<_BoundArgs...>, _TupleUj>
{
static const bool value = __invokable<_Fp,
typename __mu_return<_BoundArgs, _TupleUj>::type...>::value;
};
template <class _Fp, class ..._BoundArgs, class _TupleUj>
-struct _is_valid_bind_return<_Fp, const tuple<_BoundArgs...>, _TupleUj>
+struct __is_valid_bind_return<_Fp, const tuple<_BoundArgs...>, _TupleUj>
{
static const bool value = __invokable<_Fp,
typename __mu_return<const _BoundArgs, _TupleUj>::type...>::value;
};
template <class _Fp, class _BoundArgs, class _TupleUj,
- bool = _is_valid_bind_return<_Fp, _BoundArgs, _TupleUj>::value>
+ bool = __is_valid_bind_return<_Fp, _BoundArgs, _TupleUj>::value>
struct __bind_return;
template <class _Fp, class ..._BoundArgs, class _TupleUj>