Skip to content

Commit

Permalink
module.h: Add a virtual destructor to make the compiler happy
Browse files Browse the repository at this point in the history
  • Loading branch information
AppleDash committed Oct 6, 2015
1 parent 1bc1905 commit 8cffbbc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/module.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ class Bot;
class Module {
public:
Module() { }
virtual ~Module() { }
virtual void OnIRCRaw(Line line) { }
Bot *bot;
};

0 comments on commit 8cffbbc

Please sign in to comment.