1
0
Mirror von https://github.com/tkuschel/bees.git synchronisiert 2026-05-07 20:49:38 +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>
Dieser Commit ist enthalten in:
Zygo Blaxell
2021-04-04 14:22:34 -04:00
Ursprung 7cffad5fc3
Commit e4c95d618a
3 geänderte Dateien mit 5 neuen und 3 gelöschten Zeilen
+2 -2
Datei anzeigen
@@ -1,8 +1,8 @@
#ifndef CRUCIBLE_LOCKSET_H
#define CRUCIBLE_LOCKSET_H
#include <crucible/error.h>
#include <crucible/process.h>
#include "crucible/error.h"
#include "crucible/process.h"
#include <cassert>
+2
Datei anzeigen
@@ -1,6 +1,8 @@
#ifndef CRUCIBLE_POOL_H
#define CRUCIBLE_POOL_H
#include "crucible/error.h"
#include <functional>
#include <list>
#include <memory>
+1 -1
Datei anzeigen
@@ -1,4 +1,4 @@
#include <crucible/cleanup.h>
#include "crucible/cleanup.h"
namespace crucible {