Skip to content

Commit 1a327f1

Browse files
author
ferrol aderholdt
committed
nolint
1 parent 583d0ca commit 1a327f1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/components/cl/basic/cl_basic_context.c

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,24 +61,26 @@ UCC_CLASS_CLEANUP_FUNC(ucc_cl_basic_context_t)
6161
ucc_free(self->super.tl_ctxs);
6262
}
6363

64-
ucc_status_t ucc_cl_basic_mem_map(const ucc_base_context_t *context, int type, /* NOLINT */
64+
/* NOLINTBEGIN */
65+
ucc_status_t ucc_cl_basic_mem_map(const ucc_base_context_t *context, int type,
6566
void *address, size_t len, void *memh,
6667
void *tl_h)
6768
{
6869
return UCC_ERR_NOT_SUPPORTED;
6970
}
7071

71-
ucc_status_t ucc_cl_basic_mem_unmap(const ucc_base_context_t *context, int type, /* NOLINT */
72+
ucc_status_t ucc_cl_basic_mem_unmap(const ucc_base_context_t *context, int type,
7273
void *tl_h)
7374
{
7475
return UCC_ERR_NOT_SUPPORTED;
7576
}
7677

77-
ucc_status_t ucc_cl_basic_memh_pack(const ucc_base_context_t *context, /* NOLINT */
78+
ucc_status_t ucc_cl_basic_memh_pack(const ucc_base_context_t *context,
7879
void *memh, void **packed_buffer)
7980
{
8081
return UCC_ERR_NOT_SUPPORTED;
8182
}
83+
/* NOLINTEND */
8284

8385
UCC_CLASS_DEFINE(ucc_cl_basic_context_t, ucc_cl_context_t);
8486

0 commit comments

Comments
 (0)