Clang-tidy: readability-non-const-parameter
This commit is contained in:
parent
7102724fda
commit
d3098412ed
1 changed files with 2 additions and 2 deletions
|
|
@ -69,7 +69,7 @@ void InitHash()
|
|||
}
|
||||
}
|
||||
|
||||
static unsigned int PkwareBufferRead(char *buf, unsigned int *size, void *param)
|
||||
static unsigned int PkwareBufferRead(char *buf, unsigned int *size, void *param) // NOLINT(readability-non-const-parameter)
|
||||
{
|
||||
TDataInfo *pInfo = (TDataInfo *)param;
|
||||
|
||||
|
|
@ -86,7 +86,7 @@ static unsigned int PkwareBufferRead(char *buf, unsigned int *size, void *param)
|
|||
return sSize;
|
||||
}
|
||||
|
||||
static void PkwareBufferWrite(char *buf, unsigned int *size, void *param)
|
||||
static void PkwareBufferWrite(char *buf, unsigned int *size, void *param) // NOLINT(readability-non-const-parameter)
|
||||
{
|
||||
TDataInfo *pInfo = (TDataInfo *)param;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue