cStyleCasts

This commit is contained in:
gtsoul-tech
2024-05-17 13:57:12 +03:00
parent afd03a3d85
commit 037a54bb39
19 changed files with 183 additions and 182 deletions

View File

@@ -87,7 +87,7 @@ protected:
static
int count_cb(unsigned, unsigned long long, unsigned long long, unsigned,
void *ctxt) {
size_t *count = (size_t *)ctxt;
size_t *count = static_cast<size_t *>(ctxt);
(*count)++;
return 0;
}