From bd9cbf5fca2b3671e76a58fe1a8e32c1ff48e967 Mon Sep 17 00:00:00 2001 From: Davin McCall Date: Mon, 24 Sep 2018 18:30:24 +0100 Subject: [PATCH] Move service type id constants into service-constants.h --- src/includes/service-constants.h | 4 ++++ src/includes/service.h | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/includes/service-constants.h b/src/includes/service-constants.h index 1716cf2..0e20782 100644 --- a/src/includes/service-constants.h +++ b/src/includes/service-constants.h @@ -61,4 +61,8 @@ enum class dependency_type MILESTONE // dependency must start successfully, but once started the dependency becomes soft }; +// Service set type identifiers: +constexpr int SSET_TYPE_NONE = 0; +constexpr int SSET_TYPE_DIRLOAD = 1; + #endif diff --git a/src/includes/service.h b/src/includes/service.h index 320cf8d..9d250aa 100644 --- a/src/includes/service.h +++ b/src/includes/service.h @@ -731,10 +731,6 @@ inline auto extract_console_queue(service_record *sr) -> decltype(sr->console_qu return sr->console_queue_node; } -// Service set type identifiers: -constexpr int SSET_TYPE_NONE = 0; -constexpr int SSET_TYPE_DIRLOAD = 1; - /* * A service_set, as the name suggests, manages a set of services. * -- 2.25.1