Skip to content

Commit

Permalink
fix: authority_view destructor is noexcept
Browse files Browse the repository at this point in the history
  • Loading branch information
alandefreitas committed Nov 29, 2023
1 parent 30f2e3b commit 22928e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/boost/url/authority_view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class BOOST_URL_DECL
/** Destructor
*/
virtual
~authority_view();
~authority_view() noexcept;

/** Constructor
Expand Down
2 changes: 1 addition & 1 deletion src/authority_view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ authority_view(
//------------------------------------------------

authority_view::
~authority_view()
~authority_view() noexcept
{
}

Expand Down

0 comments on commit 22928e5

Please sign in to comment.