avoid windows portability issues with int32_t

This commit is contained in:
Axel Kohlmeyer 2019-02-28 19:27:55 -05:00
parent 0f0a65bb48
commit 30ee2f3d78
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
2 changed files with 2 additions and 1 deletions

View File

@ -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;

View File

@ -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 {