From c3faff7d4a1663d39a2c01401c3de3a7378bb5e4 Mon Sep 17 00:00:00 2001 From: q66 Date: Tue, 28 Apr 2020 04:18:59 +0200 Subject: [PATCH] include tools from geom as there's a dep --- src/engine/aa.hh | 1 - src/engine/blend.hh | 1 - src/engine/world.hh | 1 - src/shared/geom.hh | 2 ++ 4 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/engine/aa.hh b/src/engine/aa.hh index 9e49f4c..dcf09e0 100644 --- a/src/engine/aa.hh +++ b/src/engine/aa.hh @@ -3,7 +3,6 @@ #include -#include #include extern matrix4 nojittermatrix; diff --git a/src/engine/blend.hh b/src/engine/blend.hh index 3bbf553..4648ad2 100644 --- a/src/engine/blend.hh +++ b/src/engine/blend.hh @@ -3,7 +3,6 @@ #include -#include #include extern int worldsize; /* FIXME: remove */ diff --git a/src/engine/world.hh b/src/engine/world.hh index f62571a..25f4b7f 100644 --- a/src/engine/world.hh +++ b/src/engine/world.hh @@ -1,7 +1,6 @@ #ifndef ENGINE_WORLD_HH #define ENGINE_WORLD_HH -#include #include #include diff --git a/src/shared/geom.hh b/src/shared/geom.hh index ee19054..8da0328 100644 --- a/src/shared/geom.hh +++ b/src/shared/geom.hh @@ -1,6 +1,8 @@ #ifndef GEOM_HH #define GEOM_HH +#include "tools.hh" + struct vec; struct vec4;