Skip to content

Commit 7735040

Browse files
committed
Remove trailing semicolon. NFC
1 parent 3296886 commit 7735040

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/common/umf_helpers.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ using provider_unique_handle_t =
5050
typename std::enable_if<HAS_OP_##op<T>::value, umf_result_t>::type \
5151
CALL_OP_##op(T *t, Args &&...args) { \
5252
return t->op(std::forward<Args>(args)...); \
53-
}; \
53+
} \
5454
\
5555
static inline umf_result_t CALL_OP_##op(...) { \
5656
return UMF_RESULT_ERROR_NOT_SUPPORTED; \

0 commit comments

Comments
 (0)