Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / nbnxm / gpu_types.h
index d875d58a157a230bf223070a9e0051200d8b588c..daded17a0be1b6cbaccee1c1029ba7b1621994d1 100644 (file)
 
 #ifndef DOXYGEN
 
-#if GMX_GPU == GMX_GPU_OPENCL
+#    if GMX_GPU == GMX_GPU_OPENCL
 struct gmx_nbnxn_ocl_t;
 using gmx_nbnxn_gpu_t = gmx_nbnxn_ocl_t;
-#endif
+#    endif
 
-#if GMX_GPU == GMX_GPU_CUDA
+#    if GMX_GPU == GMX_GPU_CUDA
 struct gmx_nbnxn_cuda_t;
 using gmx_nbnxn_gpu_t = gmx_nbnxn_cuda_t;
-#endif
+#    endif
 
-#if GMX_GPU == GMX_GPU_NONE
+#    if GMX_GPU == GMX_GPU_NONE
 using gmx_nbnxn_gpu_t = int;
-#endif
+#    endif
 
 #endif // !DOXYGEN