disable clang-tidy checking

This commit is contained in:
Axel Kohlmeyer
2025-07-10 17:03:15 -04:00
parent 445d10ae5a
commit 93efb0fcb7
2 changed files with 4 additions and 3 deletions

View File

@ -267,11 +267,12 @@ class Pair : protected Pointers {
public:
// custom data type for accessing Coulomb tables
// NOLINTBEGIN
typedef union {
int i;
float f;
} union_int_float_t;
// NOLINTEND
// Accessor for the INTEL package to determine virial calc for hybrid

View File

@ -2161,7 +2161,7 @@ enum {
RX_NOT_WHITESPACE /*, BRANCH */
};
// BEGIN_NOLINT
// NOLINTBEGIN
typedef struct regex_t {
unsigned char type; /* CHAR, STAR, etc. */
union {
@ -2176,7 +2176,7 @@ typedef struct regex_context_t {
regex_t re_compiled[MAX_REGEXP_OBJECTS];
unsigned char ccl_buf[MAX_CHAR_CLASS_LEN];
} regex_context_t;
// END_NOLINT
// NOLINTEND
int re_match(const char *text, const char *pattern)
{