Skip to content

Commit

Permalink
work around old GCC bug
Browse files Browse the repository at this point in the history
  • Loading branch information
vmatare committed Oct 16, 2024
1 parent 0c8aebf commit e3cf71b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/driver.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ namespace thinkfan {
class Driver {
protected:
Driver(bool optional, unsigned int max_errors);
virtual ~Driver() noexcept(false) = default;

virtual ~Driver() noexcept(false)
{}

template<typename FnSignatureT>
using FN = std::function<FnSignatureT>;
Expand Down

0 comments on commit e3cf71b

Please sign in to comment.