Skip to content

Commit

Permalink
fix: add missing includes for linux full build (#1447)
Browse files Browse the repository at this point in the history
Linux was complaining about those includes when running full build
without speed optimizations. This commit adds the missing includes.
  • Loading branch information
lgrossi authored Aug 19, 2023
1 parent 496f54b commit c73b5e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/map/utils/qtreenode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

#include "pch.hpp"

#include "creatures/creature.h"
#include "map/mapcache.h"
#include "qtreenode.h"

bool QTreeLeafNode::newLeaf = false;
Expand Down
1 change: 1 addition & 0 deletions src/server/network/webhook/webhook.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include "server/network/webhook/webhook.h"
#include "config/configmanager.h"
#include "game/scheduling/scheduler.h"
#include "utils/tools.h"

Webhook::Webhook(ThreadPool &threadPool) :
threadPool(threadPool) {
Expand Down

0 comments on commit c73b5e8

Please sign in to comment.