From 5a14c712d2b181bf9b125f0f8edb781e2a63b470 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Sun, 16 Aug 2020 10:43:54 +0200 Subject: [PATCH] Style fix --- src/Exception.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exception.hpp b/src/Exception.hpp index 8a9bf05..563051b 100644 --- a/src/Exception.hpp +++ b/src/Exception.hpp @@ -37,7 +37,7 @@ namespace ArbUt { [[nodiscard]] std::string GetStacktrace([[maybe_unused]] size_t depth = 6, [[maybe_unused]] bool include_addr = true) const { #if !WINDOWS - if (_stack.size() == 0){ + if (_stack.size() == 0) { return "No stack trace could be retrieved."; } backward::TraceResolver tr;