Remove gmx custom fixed int (e.g. gmx_int64_t) types
[alexxy/gromacs.git] / src / gromacs / mdlib / constr.cpp
index 71bb29eb5e5386b3b9a5c4e0a2cdb7aef165d591..e6372aea547d6a51e7048defc7ac2d282c1c9f53 100644 (file)
@@ -116,7 +116,7 @@ class Constraints::Impl
                             const t_mdatoms      &md);
         bool apply(bool                  bLog,
                    bool                  bEner,
-                   gmx_int64_t           step,
+                   int64_t               step,
                    int                   delta_step,
                    real                  step_scaling,
                    rvec                 *x,
@@ -276,7 +276,7 @@ static void write_constr_pdb(const char *fn, const char *title,
 }
 
 //! Writes out domain contents to help diagnose crashes.
-static void dump_confs(FILE *log, gmx_int64_t step, const gmx_mtop_t &mtop,
+static void dump_confs(FILE *log, int64_t step, const gmx_mtop_t &mtop,
                        int start, int homenr, const t_commrec *cr,
                        const rvec x[], rvec xprime[], matrix box)
 {
@@ -304,7 +304,7 @@ static void dump_confs(FILE *log, gmx_int64_t step, const gmx_mtop_t &mtop,
 bool
 Constraints::apply(bool                  bLog,
                    bool                  bEner,
-                   gmx_int64_t           step,
+                   int64_t               step,
                    int                   delta_step,
                    real                  step_scaling,
                    rvec                 *x,
@@ -336,7 +336,7 @@ Constraints::apply(bool                  bLog,
 bool
 Constraints::Impl::apply(bool                  bLog,
                          bool                  bEner,
-                         gmx_int64_t           step,
+                         int64_t               step,
                          int                   delta_step,
                          real                  step_scaling,
                          rvec                 *x,
@@ -595,7 +595,7 @@ Constraints::Impl::apply(bool                  bLog,
             {
                 char buf[STRLEN];
                 sprintf(buf,
-                        "\nstep " "%" GMX_PRId64 ": One or more water molecules can not be settled.\n"
+                        "\nstep " "%" PRId64 ": One or more water molecules can not be settled.\n"
                         "Check for bad contacts and/or reduce the timestep if appropriate.\n",
                         step);
                 if (log)