Skip to content

Commit e3cf71b

Browse files
committed
work around old GCC bug
1 parent 0c8aebf commit e3cf71b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/driver.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ namespace thinkfan {
3131
class Driver {
3232
protected:
3333
Driver(bool optional, unsigned int max_errors);
34-
virtual ~Driver() noexcept(false) = default;
34+
35+
virtual ~Driver() noexcept(false)
36+
{}
3537

3638
template<typename FnSignatureT>
3739
using FN = std::function<FnSignatureT>;

0 commit comments

Comments
 (0)