mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 14:56:08 +00:00
build: adjust clang-tidy warning exclusion logic
Enable all clang-tidy warnings by default instead of disabling them. This ensures that we don't miss useful warnings on each clang-tidy version upgrade. A drawback of this is that it will force us to either fix or adjust the warnings as soon as possible.
This commit is contained in:
@@ -54,8 +54,8 @@
|
||||
#include "nvim/vim.h"
|
||||
|
||||
#ifdef HAVE_BE64TOH
|
||||
# define _BSD_SOURCE 1
|
||||
# define _DEFAULT_SOURCE 1
|
||||
# define _BSD_SOURCE 1 // NOLINT(bugprone-reserved-identifier)
|
||||
# define _DEFAULT_SOURCE 1 // NOLINT(bugprone-reserved-identifier)
|
||||
# include ENDIAN_INCLUDE_FILE
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user