From 35c83f4653e7cd6f13dacbdeb91bf6a1bd63cda6 Mon Sep 17 00:00:00 2001 From: Varun Gandhi Date: Mon, 26 Sep 2022 08:02:08 +0800 Subject: [PATCH] ci: Fix macro in release builds. --- scip_indexer/Debug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scip_indexer/Debug.h b/scip_indexer/Debug.h index 9000fbcc0..21a77dcc1 100644 --- a/scip_indexer/Debug.h +++ b/scip_indexer/Debug.h @@ -61,7 +61,7 @@ void _log_debug(const sorbet::core::GlobalState &gs, sorbet::core::Loc loc, std: #ifndef NDEBUG #define LOG_DEBUG(__gs, __loc, __s) sorbet::scip_indexer::_log_debug(__gs, __loc, __s) #else -#define LOG_DEBUG(__gs, __s) +#define LOG_DEBUG(__gs, __loc, __s) #endif -#endif // SORBET_SCIP_DEBUG \ No newline at end of file +#endif // SORBET_SCIP_DEBUG