disable clang-tidy
This commit is contained in:
@ -83,7 +83,7 @@ using namespace FixConst;
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
/* re-usable integer hash table code with static linkage. */
|
||||
|
||||
// NOLINTBEGIN
|
||||
/** hash table top level data structure */
|
||||
typedef struct taginthash_t {
|
||||
struct taginthash_node_t **bucket; /* array of hash nodes */
|
||||
@ -99,7 +99,7 @@ typedef struct taginthash_node_t {
|
||||
tagint key; /* key for hash lookup */
|
||||
struct taginthash_node_t *next; /* next node in hash chain */
|
||||
} taginthash_node_t;
|
||||
|
||||
// NOLINTEND
|
||||
#define HASH_FAIL -1
|
||||
#define HASH_LIMIT 0.5
|
||||
|
||||
@ -348,6 +348,8 @@ static void id_sort(tagint *idmap, tagint left, tagint right)
|
||||
|
||||
#include <climits>
|
||||
|
||||
// NOLINTBEGIN
|
||||
|
||||
#if (INT_MAX == 2147483647)
|
||||
typedef int int32;
|
||||
#else
|
||||
@ -455,6 +457,7 @@ struct commdata {
|
||||
|
||||
static MPI_Datatype MPI_CommData;
|
||||
|
||||
// NOLINTEND
|
||||
/***************************************************************
|
||||
* create class and parse arguments in LAMMPS script.
|
||||
***************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user