From 0f4f874587b1530fe7d30b6247d6068322646db5 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Mon, 9 Oct 2023 14:54:17 -0400 Subject: [PATCH] printjson: indentation in .hpp --- include/xo/printjson/init_printjson.hpp | 28 ++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/include/xo/printjson/init_printjson.hpp b/include/xo/printjson/init_printjson.hpp index f2b06a19..dbad03f8 100644 --- a/include/xo/printjson/init_printjson.hpp +++ b/include/xo/printjson/init_printjson.hpp @@ -8,21 +8,21 @@ #include "xo/subsys/Subsystem.hpp" namespace xo { - /* tag to represent the printjson/ subsystem within ordered initialization */ - enum S_printjson_tag {}; + /* tag to represent the printjson/ subsystem within ordered initialization */ + enum S_printjson_tag {}; - /* Use: - * // anywhere, to declare printjson dependency e.g. at file scope - * InitEvidence s_evidence = InitSubsys::require(); - * - * // from main(), though can resort to module initialization in a pybind11 library - * Subsystem::initialize_all(); - */ - template<> - struct InitSubsys { - static void init(); - static InitEvidence require(); - }; + /* Use: + * // anywhere, to declare printjson dependency e.g. at file scope + * InitEvidence s_evidence = InitSubsys::require(); + * + * // from main(), though can resort to module initialization in a pybind11 library + * Subsystem::initialize_all(); + */ + template<> + struct InitSubsys { + static void init(); + static InitEvidence require(); + }; } /*namespace xo*/