Ignore:
Timestamp:
2018-07-05T21:41:21Z (7 years ago)
Author:
Dzejrou <dzejrou@…>
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)
Message:

cpp: revamped c header wrappers, now only include standard symbols, others are in std::hel, fixed some bugs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/impl/stack.hpp

    r6d8a63a rde53138  
    4848            using container_type  = Container;
    4949            using value_type      = typename container_type::value_type;
    50             using reference       = typename constainer_type::reference;
     50            using reference       = typename container_type::reference;
    5151            using const_reference = typename container_type::const_reference;
    5252            using size_type       = typename container_type::size_type;
     
    132132
    133133            void swap(stack& other)
    134                 noexcept(noexcept(swap(c, other.c)))
     134                /* noexcept(noexcept(swap(c, other.c))) */
    135135            {
    136136                std::swap(c, other.c);
Note: See TracChangeset for help on using the changeset viewer.