From e4c95d618a0da4edf3658a2d03366dc12bf4e75c Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Sun, 4 Apr 2021 14:22:34 -0400 Subject: [PATCH] crucible: use '#include "crucible/...' everywhere Make the #include syntax more consistent (even if it has no effect). Signed-off-by: Zygo Blaxell --- include/crucible/lockset.h | 4 ++-- include/crucible/pool.h | 2 ++ lib/cleanup.cc | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/include/crucible/lockset.h b/include/crucible/lockset.h index 99500b7..6b53cf4 100644 --- a/include/crucible/lockset.h +++ b/include/crucible/lockset.h @@ -1,8 +1,8 @@ #ifndef CRUCIBLE_LOCKSET_H #define CRUCIBLE_LOCKSET_H -#include -#include +#include "crucible/error.h" +#include "crucible/process.h" #include diff --git a/include/crucible/pool.h b/include/crucible/pool.h index 7377169..077b33d 100644 --- a/include/crucible/pool.h +++ b/include/crucible/pool.h @@ -1,6 +1,8 @@ #ifndef CRUCIBLE_POOL_H #define CRUCIBLE_POOL_H +#include "crucible/error.h" + #include #include #include diff --git a/lib/cleanup.cc b/lib/cleanup.cc index 91c92bb..40157ed 100644 --- a/lib/cleanup.cc +++ b/lib/cleanup.cc @@ -1,4 +1,4 @@ -#include +#include "crucible/cleanup.h" namespace crucible {