Changeset dbaf221 in mainline
- Timestamp:
- 2018-07-05T21:41:20Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7d0f2eb
- Parents:
- 82ef902
- git-author:
- Dzejrou <dzejrou@…> (2018-03-11 15:25:22)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/tuple.hpp
r82ef902 rdbaf221 207 207 { 208 208 static constexpr bool value = noexcept(std::swap(declval<T&>(), declval<T&>())) 209 & tuple_noexcept_swap<Ts...>::value;209 && tuple_noexcept_swap<Ts...>::value; 210 210 }; 211 211 … … 220 220 { 221 221 static constexpr bool value = is_nothrow_move_assignable<T>::value 222 & tuple_noexcept_assignment<Ts...>::value;222 && tuple_noexcept_assignment<Ts...>::value; 223 223 }; 224 224
Note:
See TracChangeset
for help on using the changeset viewer.