clang-tidy: enable and fix readability-uppercase-literal-suffix

Ref: https://clang.llvm.org/extra/clang-tidy/checks/readability/uppercase-literal-suffix.html

Closes #20629
This commit is contained in:
Viktor Szakats 2026-02-18 13:58:36 +01:00
parent 3cdc167425
commit c07c3cac74
No known key found for this signature in database
4 changed files with 8 additions and 7 deletions

View file

@ -539,7 +539,7 @@ CURLcode Curl_http_auth_act(struct Curl_easy *data)
bool pickhost = FALSE;
bool pickproxy = FALSE;
CURLcode result = CURLE_OK;
unsigned long authmask = ~0ul;
unsigned long authmask = ~0UL;
if(!data->set.str[STRING_BEARER])
authmask &= (unsigned long)~CURLAUTH_BEARER;