forked from lijiext/lammps
avoid windows portability issues with int32_t
This commit is contained in:
parent
0f0a65bb48
commit
30ee2f3d78
|
@ -35,7 +35,7 @@ class ComputePTMAtom : public Compute {
|
|||
|
||||
private:
|
||||
int nmax;
|
||||
int32_t input_flags;
|
||||
smallint input_flags;
|
||||
double rmsd_threshold;
|
||||
class NeighList *list;
|
||||
double **output;
|
||||
|
|
|
@ -11,6 +11,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|||
#define PTM_NEIGHBOUR_ORDERING_H
|
||||
|
||||
#include <cstddef>
|
||||
#include <stdint.h>
|
||||
|
||||
namespace ptm {
|
||||
|
||||
|
|
Loading…
Reference in New Issue