Changeset de53138 in mainline for uspace/lib/cpp/include/impl/stack.hpp
- Timestamp:
- 2018-07-05T21:41:21Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c71c171
- Parents:
- 6d8a63a
- git-author:
- Dzejrou <dzejrou@…> (2018-04-20 00:11:54)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:21)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/stack.hpp
r6d8a63a rde53138 48 48 using container_type = Container; 49 49 using value_type = typename container_type::value_type; 50 using reference = typename con stainer_type::reference;50 using reference = typename container_type::reference; 51 51 using const_reference = typename container_type::const_reference; 52 52 using size_type = typename container_type::size_type; … … 132 132 133 133 void swap(stack& other) 134 noexcept(noexcept(swap(c, other.c)))134 /* noexcept(noexcept(swap(c, other.c))) */ 135 135 { 136 136 std::swap(c, other.c);
Note:
See TracChangeset
for help on using the changeset viewer.