Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / utility / mpiinplacebuffers.h
index 64fac5a50a912218e06f1eb691dc11c5390dda52..dfbac0de09b5b4a431693fd68624716f382745ca 100644 (file)
@@ -52,20 +52,20 @@ struct mpi_in_place_buf_t
 {
     /* these buffers are used as destination buffers if MPI_IN_PLACE isn't
        supported.*/
-    int             *ibuf; /* for ints */
-    int              ibuf_alloc;
+    intibuf; /* for ints */
+    int  ibuf_alloc;
 
-    int64_t         *libuf;
-    int              libuf_alloc;
+    int64_tlibuf;
+    int      libuf_alloc;
 
-    float           *fbuf; /* for floats */
-    int              fbuf_alloc;
+    floatfbuf; /* for floats */
+    int    fbuf_alloc;
 
-    double          *dbuf; /* for doubles */
-    int              dbuf_alloc;
+    doubledbuf; /* for doubles */
+    int     dbuf_alloc;
 };
 
 //! Cleans up the buffers
-void done_mpi_in_place_buf(mpi_in_place_buf_t *buf);
+void done_mpi_in_place_buf(mpi_in_place_buf_tbuf);
 
 #endif