From a2e2b2a59dd91aecc18a67dc7399a43540734bb2 Mon Sep 17 00:00:00 2001 From: John Shumway Date: Tue, 6 Jan 2026 11:08:54 -0800 Subject: [PATCH] Fix build error from extra comma (#3516) The newer rocm compiler gives an error with a trailing comma in testing::AllOf. [ROCm/composable_kernel commit: 960ef551bf5d615d45e31b954e0faff147e76c85] --- experimental/builder/test/unit_error.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experimental/builder/test/unit_error.cpp b/experimental/builder/test/unit_error.cpp index b666462385..201780cc6a 100644 --- a/experimental/builder/test/unit_error.cpp +++ b/experimental/builder/test/unit_error.cpp @@ -30,7 +30,7 @@ TEST(HipError, SourceInfo) // ...the filename HasSubstr("experimental/builder/test/unit_error.cpp"), // ...the function name - HasSubstr("throw_error"), + HasSubstr("throw_error") // Note: Don't include the row/column so that we can move // stuff around in this file. )));