[labormanager] fix warning about non-virtual destructor in jlfunc

develop
Ben Lubar 2018-04-05 16:04:14 -05:00
parent a44b3b8f98
commit a37df92656
No known key found for this signature in database
GPG Key ID: 018BAB45DB2D2B24
1 changed files with 1 additions and 0 deletions

@ -229,6 +229,7 @@ static df::unit_labor construction_build_labor(df::building_actual* b)
class jlfunc
{
public:
virtual ~jlfunc() {}
virtual df::unit_labor get_labor(df::job* j) = 0;
};