From 2a9291f7f5b87c6a42b7d728bc518d30b3952c46 Mon Sep 17 00:00:00 2001 From: Andrei Alexeyev <0x416b617269@gmail.com> Date: Wed, 20 Dec 2017 20:57:29 +0200 Subject: [PATCH] auto-add missing include (update-copyright.py) --- src/objectpool.c | 2 ++ src/objectpool.h | 1 + src/objectpool_fake.c | 2 ++ src/objectpool_util.c | 2 ++ src/objectpool_util.h | 1 + src/stageobjects.c | 2 ++ src/stageobjects.h | 1 + 7 files changed, 11 insertions(+) diff --git a/src/objectpool.c b/src/objectpool.c index 0c54527c..b45d519f 100644 --- a/src/objectpool.c +++ b/src/objectpool.c @@ -6,6 +6,8 @@ * Copyright (c) 2012-2017, Andrei Alexeyev . */ +#include "taisei.h" + #include "objectpool.h" #include "util.h" #include "list.h" diff --git a/src/objectpool.h b/src/objectpool.h index a7754ecf..0d123ebb 100644 --- a/src/objectpool.h +++ b/src/objectpool.h @@ -7,6 +7,7 @@ */ #pragma once +#include "taisei.h" #include #include diff --git a/src/objectpool_fake.c b/src/objectpool_fake.c index 721a50c5..ce88fe96 100644 --- a/src/objectpool_fake.c +++ b/src/objectpool_fake.c @@ -6,6 +6,8 @@ * Copyright (c) 2012-2017, Andrei Alexeyev . */ +#include "taisei.h" + #include "objectpool.h" #include "util.h" diff --git a/src/objectpool_util.c b/src/objectpool_util.c index b7b6cb6b..4110cda9 100644 --- a/src/objectpool_util.c +++ b/src/objectpool_util.c @@ -6,6 +6,8 @@ * Copyright (c) 2012-2017, Andrei Alexeyev . */ +#include "taisei.h" + #include "objectpool_util.h" static void* objpool_release_list_callback(List **dest, List *elem, void *vpool) { diff --git a/src/objectpool_util.h b/src/objectpool_util.h index 02b7f7da..a4fc9907 100644 --- a/src/objectpool_util.h +++ b/src/objectpool_util.h @@ -7,6 +7,7 @@ */ #pragma once +#include "taisei.h" #include "objectpool.h" diff --git a/src/stageobjects.c b/src/stageobjects.c index 3e1851dd..589f9fee 100644 --- a/src/stageobjects.c +++ b/src/stageobjects.c @@ -6,6 +6,8 @@ * Copyright (c) 2012-2017, Andrei Alexeyev . */ +#include "taisei.h" + #include "stageobjects.h" #include "projectile.h" #include "item.h" diff --git a/src/stageobjects.h b/src/stageobjects.h index 1231c450..5abc439d 100644 --- a/src/stageobjects.h +++ b/src/stageobjects.h @@ -7,6 +7,7 @@ */ #pragma once +#include "taisei.h" #include "objectpool.h"