Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavidsaver committed Jul 25, 2023
1 parent 3b8540f commit f5657e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/evhelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ struct PVXS_API VFunctor0 {
virtual void invoke() =0;
};
template<typename Fn>
struct Functor0 : public VFunctor0 {
struct Functor0 final : public VFunctor0 {
Functor0() = default;
Functor0(Fn&& fn) : fn(std::move(fn)) {}
virtual ~Functor0() {}
Expand Down

0 comments on commit f5657e5

Please sign in to comment.