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:
parent
bd5d4b6538
commit
b110e777bd
2 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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); }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue