Skip to content

Commit

Permalink
Added noexcept(false) attributes. Fixes #60
Browse files Browse the repository at this point in the history
  • Loading branch information
manpen committed Sep 26, 2017
1 parent 6cf18ce commit 263df0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/io/request.cpp
Expand Up @@ -36,7 +36,7 @@ request::request(
m_file->add_request_ref();
}

request::~request()
request::~request() noexcept(false)
{
STXXL_VERBOSE3_THIS("request::~request(), ref_cnt=" << get_reference_count());
}
Expand Down

0 comments on commit 263df0c

Please sign in to comment.