From 35935ec384d5648b97e7444cb287983461a1c4c7 Mon Sep 17 00:00:00 2001 From: Hugh Delaney Date: Fri, 10 May 2024 10:33:38 +0100 Subject: [PATCH] Remove unnecessary semicolon This was causing a warning with -Wpedantic. --- source/common/ur_util.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/ur_util.hpp b/source/common/ur_util.hpp index 9cecdbec1e..f588a21a2e 100644 --- a/source/common/ur_util.hpp +++ b/source/common/ur_util.hpp @@ -294,7 +294,7 @@ template struct stype_map {}; // stype_map_impl {}; #include "stype_map_helpers.def" -template constexpr int as_stype() { return stype_map::value; }; +template constexpr int as_stype() { return stype_map::value; } /// Walk a generic UR linked list looking for a node of the given type. If it's /// found, its address is returned, othewise `nullptr`. e.g. to find out whether