From 7eeb7376b47189eccff1bbb32e1b45e9d57fcad9 Mon Sep 17 00:00:00 2001 From: "Jonathan R. Madsen" Date: Mon, 20 May 2024 16:04:28 -0500 Subject: [PATCH] Fix ROCP_CI_LOG when ROCPROFILER_CI not defined (#864) --- source/lib/common/logging.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/common/logging.hpp b/source/lib/common/logging.hpp index c833603430..99ec86eaf7 100644 --- a/source/lib/common/logging.hpp +++ b/source/lib/common/logging.hpp @@ -55,7 +55,7 @@ # define ROCP_CI_LOG(NON_CI_LEVEL, ...) ROCP_FATAL #else # define ROCP_CI_LOG_IF(NON_CI_LEVEL, ...) ROCP_##NON_CI_LEVEL##_IF(__VA_ARGS__) -# define ROCP_CI_LOG(NON_CI_LEVEL, ...) ROCP_##NON_CI_LEVEL## +# define ROCP_CI_LOG(NON_CI_LEVEL, ...) ROCP_##NON_CI_LEVEL #endif namespace rocprofiler