Skip to content

Commit 35935ec

Browse files
author
Hugh Delaney
committed
Remove unnecessary semicolon
This was causing a warning with -Wpedantic.
1 parent 4ea7253 commit 35935ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/common/ur_util.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ template <typename T> struct stype_map {};
294294
// stype_map_impl<UR_STRUCTURE_TYPE_USM_DEVICE_DESC> {};
295295
#include "stype_map_helpers.def"
296296

297-
template <typename T> constexpr int as_stype() { return stype_map<T>::value; };
297+
template <typename T> constexpr int as_stype() { return stype_map<T>::value; }
298298

299299
/// Walk a generic UR linked list looking for a node of the given type. If it's
300300
/// found, its address is returned, othewise `nullptr`. e.g. to find out whether

0 commit comments

Comments
 (0)