1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 13:25:45 +02:00

crucible: use '#include "crucible/...' everywhere

Make the #include syntax more consistent (even if it has no effect).

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
Zygo Blaxell 2021-04-04 14:22:34 -04:00
parent 7cffad5fc3
commit e4c95d618a
3 changed files with 5 additions and 3 deletions

View File

@ -1,8 +1,8 @@
#ifndef CRUCIBLE_LOCKSET_H #ifndef CRUCIBLE_LOCKSET_H
#define CRUCIBLE_LOCKSET_H #define CRUCIBLE_LOCKSET_H
#include <crucible/error.h> #include "crucible/error.h"
#include <crucible/process.h> #include "crucible/process.h"
#include <cassert> #include <cassert>

View File

@ -1,6 +1,8 @@
#ifndef CRUCIBLE_POOL_H #ifndef CRUCIBLE_POOL_H
#define CRUCIBLE_POOL_H #define CRUCIBLE_POOL_H
#include "crucible/error.h"
#include <functional> #include <functional>
#include <list> #include <list>
#include <memory> #include <memory>

View File

@ -1,4 +1,4 @@
#include <crucible/cleanup.h> #include "crucible/cleanup.h"
namespace crucible { namespace crucible {