Add return value to operator= to fix gcc compiler error

This commit is contained in:
loonycyborg 2017-05-03 14:38:33 +03:00
parent cc8c3fe352
commit c8a7dd7b37

View file

@ -31,7 +31,7 @@ public:
story_parser() = default;
story_parser(const story_parser&) = delete;
operator=(const story_parser&) = delete;
story_parser& operator=(const story_parser&) = delete;
/** Takes care of initializing and branching properties. */
virtual void resolve_wml(const vconfig& cfg);