Skip to content

Commit

Permalink
[clang-tidy] Remove noexcept from function that might throw
Browse files Browse the repository at this point in the history
bugprone-exception-escape
  • Loading branch information
netromdk committed Jul 7, 2021
1 parent db9bc58 commit 70f12a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sigs.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class ConnectionBase final {
friend class Signal;

public:
void disconnect() noexcept
void disconnect()
{
if (deleter) deleter();
}
Expand Down

0 comments on commit 70f12a7

Please sign in to comment.