Remove gmx custom fixed int (e.g. gmx_int64_t) types
[alexxy/gromacs.git] / src / gromacs / utility / tests / arrayref.cpp
index 3b4c07d4cd4149163ec7c914d36989b3def10ceb..f6f98fcabc1390ee5a85e1f3a1e1cd5348352651 100644 (file)
@@ -83,8 +83,8 @@ typedef ::testing::Types<
         ArrayRef<unsigned int>,
         ArrayRef<long>,
         ArrayRef<unsigned long>,
-        ArrayRef<gmx_int64_t>,
-        ArrayRef<gmx_uint64_t>,
+        ArrayRef<int64_t>,
+        ArrayRef<uint64_t>,
         ArrayRef<float>,
         ArrayRef<double>,
         ArrayRef<const char>,
@@ -93,8 +93,8 @@ typedef ::testing::Types<
         ArrayRef<const unsigned int>,
         ArrayRef<const long>,
         ArrayRef<const unsigned long>,
-        ArrayRef<const gmx_int64_t>,
-        ArrayRef<const gmx_uint64_t>,
+        ArrayRef<const int64_t>,
+        ArrayRef<const uint64_t>,
         ArrayRef<const float>,
         ArrayRef<const double>
         > ArrayRefTypes;