Browse Source

Clang-tidy: readability-non-const-parameter

pull/2243/head
Anders Jenbo 5 years ago
parent
commit
d3098412ed
  1. 4
      Source/encrypt.cpp

4
Source/encrypt.cpp

@ -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…
Cancel
Save