mirror of
https://github.com/curl/curl.git
synced 2026-08-26 04:23:33 +03:00
build: delete/replace clang warning pragmas
- delete redundant warning suppressions for `-Wformat-nonliteral`. This now relies on `CURL_PRINTF()` and it's theoratically possible that this macro isn't active but the warning is. We're ignoring this as a corner-case here. - replace two pragmas with code changes to avoid the warnings. Follow-up toaee4ebe591#12803 Follow-up to0923012758#12540 Follow-up to3829759bd0#12489 Reviewed-by: Daniel Stenberg Closes #12812
This commit is contained in:
parent
ecb5d6bee9
commit
5b286c2508
9 changed files with 5 additions and 87 deletions
|
|
@ -448,14 +448,7 @@ void curl_dbg_log(const char *format, ...)
|
|||
return;
|
||||
|
||||
va_start(ap, format);
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wformat-nonliteral"
|
||||
#endif
|
||||
nchars = mvsnprintf(buf, LOGLINE_BUFSIZE, format, ap);
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
va_end(ap);
|
||||
|
||||
if(nchars > LOGLINE_BUFSIZE - 1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue