mirror of
https://github.com/neovim/neovim.git
synced 2025-10-14 05:46:12 +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:
@@ -208,7 +208,7 @@ void ex_language(exarg_T *eap)
|
||||
#ifdef HAVE_NL_MSG_CAT_CNTR
|
||||
// Need to do this for GNU gettext, otherwise cached translations
|
||||
// will be used again.
|
||||
extern int _nl_msg_cat_cntr;
|
||||
extern int _nl_msg_cat_cntr; // NOLINT(bugprone-reserved-identifier)
|
||||
|
||||
_nl_msg_cat_cntr++;
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user