diff --git a/src/driver.h b/src/driver.h index fc7a86b..83e4286 100644 --- a/src/driver.h +++ b/src/driver.h @@ -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 using FN = std::function;