From f40f65dcb707ebcde45bdac60962e8053656331c Mon Sep 17 00:00:00 2001 From: Estevan Vedovelli Date: Fri, 9 Jan 2026 14:47:22 -0500 Subject: [PATCH] Fix error when building with -DCMAKE_BUILD_TYPE=Debug --- .../ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp b/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp index 897892afb2c..ee8527c4581 100644 --- a/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp +++ b/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp @@ -59,7 +59,7 @@ struct BaseFlatmmPipelineAGmemBGmemCRegV1 return TailHandler(run_func, has_hot_loop); else { - assert(("Wrong TailNumber!", false)); + assert(false && "Wrong TailNumber!"); return TailHandler(run_func, has_hot_loop); } }