Fixes build errors

develop
Josh Cooper 2022-04-18 19:55:49 -07:00 committed by Myk
parent ff2bd8d953
commit 251f4f92c8
1 changed files with 2 additions and 1 deletions

@ -13,6 +13,7 @@
#include "df/unit.h" #include "df/unit.h"
#include "df/unit_inventory_item.h" #include "df/unit_inventory_item.h"
#include "df/unit_wound.h" #include "df/unit_wound.h"
#include "df/construction.h"
namespace DFHack { namespace DFHack {
namespace EventManager { namespace EventManager {
@ -211,7 +212,7 @@ namespace std {
} }
namespace df{ namespace df{
bool operator==(const df::construction &A, const df::construction &B){ inline bool operator==(const df::construction &A, const df::construction &B){
return A.pos == B.pos; return A.pos == B.pos;
} }
} }