From a5a8db289a42e972a8e0097a1640682d13b9ac76 Mon Sep 17 00:00:00 2001 From: William JCM Date: Mon, 21 Nov 2022 09:30:13 +0100 Subject: [PATCH] Main: update formatting. --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index f680498..371f6ef 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -25,16 +25,16 @@ #include int main(int argc, char** argv) { -#ifndef SAVETOOL_DEBUG_BUILD + #ifndef SAVETOOL_DEBUG_BUILD std::ofstream output{"SaveToolLog.txt", std::ios::trunc|std::ios::out}; Utility::Debug d{&output}; Utility::Warning w{&output}; Utility::Error e{&output}; -#else + #else Utility::Warning w{Utility::Debug::defaultOutput()}; Utility::Error e{Utility::Debug::defaultOutput()}; -#endif + #endif Utility::Debug{} << "===M.A.S.S. Builder Save Tool version " SAVETOOL_VERSION "===";