Unverified Commit 30ee2f3d authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

avoid windows portability issues with int32_t

parent 0f0a65bb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
+1 −0
Original line number Diff line number Diff line
@@ -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 {