Changeset 18944e0 in mainline
- Timestamp:
- 2018-07-05T21:41:17Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- de89870
- Parents:
- 3457e11
- git-author:
- Jaroslav Jindrak <dzejrou@…> (2017-10-22 17:01:06)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/utility.hpp
r3457e11 r18944e0 92 92 template<class T> 93 93 void swap(T& x, T& y) 94 noexcept(is_nothrow_move_constructible<T>::value &&95 is_nothrow_move_assignable<T>::value)94 /* noexcept(is_nothrow_move_constructible<T>::value && */ 95 /* is_nothrow_move_assignable<T>::value) */ 96 96 { 97 97 T tmp{move(x)};
Note:
See TracChangeset
for help on using the changeset viewer.