Apply clang-tidy-8 readability-uppercase-literal-suffix
[alexxy/gromacs.git] / src / gromacs / mdrun / md.cpp
index f5c247089a0bf13c6b622afcae973e45b8e96e9f..b6473f9ee118dec4c0b5458320920e1a7033c468 100644 (file)
@@ -426,7 +426,7 @@ void gmx::LegacySimulator::do_md()
 
     if (!ir->bContinuation)
     {
-        if (state->flags & (1u << estV))
+        if (state->flags & (1U << estV))
         {
             auto v = makeArrayRef(state->v);
             /* Set the velocities of vsites, shells and frozen atoms to zero */
@@ -1543,7 +1543,7 @@ void gmx::LegacySimulator::do_md()
         /* With all integrators, except VV, we need to retain the pressure
          * at the current step for coupling at the next step.
          */
-        if ((state->flags & (1u<<estPRES_PREV)) &&
+        if ((state->flags & (1U<<estPRES_PREV)) &&
             (bGStatEveryStep ||
              (ir->nstpcouple > 0 && step % ir->nstpcouple == 0)))
         {