Changeset a97b838 in mainline


Ignore:
Timestamp:
2018-07-05T21:41:20Z (6 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ce22ac6
Parents:
857d4cc
git-author:
Dzejrou <dzejrou@…> (2018-03-29 12:05:35)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:20)
Message:

cpp: added missing noexcept specifier

Location:
uspace/lib/cpp
Files:
2 edited

Legend:

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

    r857d4cc ra97b838  
    156156
    157157            void lock();
    158             bool try_lock();
     158            bool try_lock() noexcept;
    159159            void unlock();
    160160
  • uspace/lib/cpp/src/mutex.cpp

    r857d4cc ra97b838  
    145145    }
    146146
    147     bool recursive_timed_mutex::try_lock()
     147    bool recursive_timed_mutex::try_lock() noexcept
    148148    {
    149149        if (owner_ != this_thread::get_id())
Note: See TracChangeset for help on using the changeset viewer.