2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-18 01:52:24 +00:00

add noexcept keyword to scheduler::wait_until() and context::wait_until()

This commit is contained in:
Oliver Kowalke
2015-09-19 16:15:13 +02:00
parent 4e1e9fc240
commit 59946d4426
4 changed files with 4 additions and 4 deletions

View File

@@ -164,7 +164,7 @@ context::yield() noexcept {
}
bool
context::wait_until( std::chrono::steady_clock::time_point const& tp) {
context::wait_until( std::chrono::steady_clock::time_point const& tp) noexcept {
BOOST_ASSERT( nullptr != scheduler_);
BOOST_ASSERT( this == active_);