From 642683c12a69ac0460e81149374e5468a5a2ff2a Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Thu, 1 Sep 2022 23:34:47 +0200 Subject: [PATCH] Refactor CMake code related to compiler warnings, enable some additional warnings --- src/util/assert.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/util/assert.cpp b/src/util/assert.cpp index 2f294d86d..f8a9cc2e6 100644 --- a/src/util/assert.cpp +++ b/src/util/assert.cpp @@ -23,8 +23,7 @@ namespace // Boost.Assert only declares the following two functions and let's us define them here. namespace boost { -void -assertion_failed(char const *expr, char const *function, char const *file, long line) +void assertion_failed(char const *expr, char const *function, char const *file, long line) { ::assertion_failed_msg_helper(expr, "", function, file, line); }