forked from github/server
code style: use quotes on local includes
This commit is contained in:
parent
3cf58f74af
commit
53d4010958
2 changed files with 28 additions and 28 deletions
|
@ -4,26 +4,26 @@
|
|||
|
||||
#include "alchemy.h"
|
||||
|
||||
/* kernel includes */
|
||||
#include <kernel/building.h>
|
||||
#include <kernel/faction.h>
|
||||
#include <kernel/item.h>
|
||||
#include <kernel/messages.h>
|
||||
#include <kernel/order.h>
|
||||
#include <kernel/race.h>
|
||||
#include <kernel/region.h>
|
||||
#include <kernel/unit.h>
|
||||
#include <kernel/terrain.h>
|
||||
|
||||
/* attributes includes */
|
||||
#include <attributes/reduceproduction.h>
|
||||
#include "attributes/reduceproduction.h"
|
||||
|
||||
/* kernel includes */
|
||||
#include "kernel/attrib.h"
|
||||
#include "kernel/building.h"
|
||||
#include "kernel/faction.h"
|
||||
#include "kernel/item.h"
|
||||
#include "kernel/messages.h"
|
||||
#include "kernel/order.h"
|
||||
#include "kernel/race.h"
|
||||
#include "kernel/region.h"
|
||||
#include "kernel/terrain.h"
|
||||
#include "kernel/unit.h"
|
||||
|
||||
/* util includes */
|
||||
#include <kernel/attrib.h>
|
||||
#include <util/log.h>
|
||||
#include <util/rand.h>
|
||||
#include <util/message.h>
|
||||
#include <util/rng.h>
|
||||
#include "util/log.h"
|
||||
#include "util/rand.h"
|
||||
#include "util/message.h"
|
||||
#include "util/rng.h"
|
||||
|
||||
/* libc includes */
|
||||
#include <assert.h>
|
||||
|
|
|
@ -3,19 +3,19 @@
|
|||
#include "volcano.h"
|
||||
#include "alchemy.h"
|
||||
|
||||
#include <attributes/reduceproduction.h>
|
||||
#include "attributes/reduceproduction.h"
|
||||
|
||||
#include <kernel/attrib.h>
|
||||
#include <kernel/building.h>
|
||||
#include <kernel/faction.h>
|
||||
#include <kernel/item.h>
|
||||
#include <kernel/messages.h>
|
||||
#include <kernel/region.h>
|
||||
#include <kernel/terrain.h>
|
||||
#include <kernel/unit.h>
|
||||
#include "kernel/attrib.h"
|
||||
#include "kernel/building.h"
|
||||
#include "kernel/faction.h"
|
||||
#include "kernel/item.h"
|
||||
#include "kernel/messages.h"
|
||||
#include "kernel/region.h"
|
||||
#include "kernel/terrain.h"
|
||||
#include "kernel/unit.h"
|
||||
|
||||
#include <util/rand.h>
|
||||
#include <util/rng.h>
|
||||
#include "util/rand.h"
|
||||
#include "util/rng.h"
|
||||
|
||||
#include <CuTest.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue