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

cpp: temporarily removed noexcept on swap due to a missing requirement metafunction

File:
1 edited

Legend:

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

    r3457e11 r18944e0  
    9292    template<class T>
    9393    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) */
    9696    {
    9797        T tmp{move(x)};
Note: See TracChangeset for help on using the changeset viewer.