refactor: remove redundant NOLINT comments

This commit is contained in:
dundargoc
2024-01-01 15:56:00 +01:00
committed by dundargoc
parent f69658bc35
commit b49d4e18a6
19 changed files with 62 additions and 62 deletions

View File

@@ -619,7 +619,7 @@ void expand_env_esc(char *restrict srcp, char *restrict dst, int dstlen, bool es
while (c-- > 0 && *tail != NUL && *tail != '}') {
*var++ = *tail++;
}
} else // NOLINT
} else
#endif
{
while (c-- > 0 && *tail != NUL && vim_isIDc((uint8_t)(*tail))) {

View File

@@ -7,7 +7,7 @@
# define HPCON VOID *
#endif
extern HRESULT(WINAPI *pCreatePseudoConsole) // NOLINT(whitespace/parens)
extern HRESULT(WINAPI *pCreatePseudoConsole)
(COORD, HANDLE, HANDLE, DWORD, HPCON *);
extern HRESULT(WINAPI *pResizePseudoConsole)(HPCON, COORD);
extern void(WINAPI *pClosePseudoConsole)(HPCON);