Restore accidentally-removed volatile qualifier

* include/std/functional (_Mu<_Arg, false, false>::operator()): Restore
	accidentally-removed volatile qualifier.

From-SVN: r231660
This commit is contained in:
Jonathan Wakely 2015-12-15 17:06:25 +00:00 committed by Jonathan Wakely
parent bd5d4b6538
commit b110e777bd
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2015-12-15 Jonathan Wakely <jwakely@redhat.com>
* include/std/functional (_Mu<_Arg, false, false>::operator()): Restore
accidentally-removed volatile qualifier.
* include/std/functional (is_placeholder, is_bind_expression): Update
comments.
(_Safe_tuple_element): Replace with _Safe_tuple_element_t alias

View file

@ -852,7 +852,7 @@ _GLIBCXX_MEM_FN_TRAITS(&&, false_type, true_type)
public:
template<typename _CVArg, typename _Tuple>
_CVArg&&
operator()(_CVArg&& __arg, _Tuple&) const
operator()(_CVArg&& __arg, _Tuple&) const volatile
{ return std::forward<_CVArg>(__arg); }
};