From 38b984919b7e83de64917b2a0926ce0028b37f2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Stolarczuk?= Date: Fri, 9 Feb 2024 17:18:45 +0100 Subject: [PATCH] Remove redundant semicolons It's only to silence errors, found on gcc in Ubuntu 20.04: "error: extra ';' [-Werror=pedantic] --- test/conformance/testing/include/uur/raii.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/conformance/testing/include/uur/raii.h b/test/conformance/testing/include/uur/raii.h index e664f491c1..e4f456ec36 100644 --- a/test/conformance/testing/include/uur/raii.h +++ b/test/conformance/testing/include/uur/raii.h @@ -108,7 +108,7 @@ using Program = Wrapper; using Kernel = Wrapper; using Queue = Wrapper; using Event = Wrapper; -}; // namespace raii -}; // namespace uur +} // namespace raii +} // namespace uur #endif // UUR_RAII_H_INCLUDED