Seems this should have a virtual dtor

This commit is contained in:
Charles Dang 2017-05-04 15:43:15 +11:00
parent ce11f4855e
commit ae85e4ca02

View file

@ -29,6 +29,7 @@ class story_parser
{
public:
story_parser() = default;
virtual ~story_parser() = default;
story_parser(const story_parser&) = delete;
story_parser& operator=(const story_parser&) = delete;