From 2bc183812f020b1fc4f29b092c3c50f3e8a3a712 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 28 Jul 2021 15:23:00 +0000 Subject: [PATCH] Committing clang-format changes --- commons/async_adaptor.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commons/async_adaptor.h b/commons/async_adaptor.h index 2d3ec951..c3e2dfa5 100644 --- a/commons/async_adaptor.h +++ b/commons/async_adaptor.h @@ -11,14 +11,14 @@ #ifndef H5ES_WAIT_FOREVER #define H5ES_WAIT_FOREVER INT_MAX -// An enum type H5ES_status_t exists in version 1.12.x and later +// An enum type H5ES_status_t exists in version 1.12.x and later // This definition is just to make compiler happy with older version headers -// In hdf5 1.12.0, header file is defined as _H5ESpublic_H and +// In hdf5 1.12.0, header file is defined as _H5ESpublic_H and // in 1.12.1 and later, it's defined as H5ESpublic_H. Checking for both. #if defined(_H5ESpublic_H) || defined(H5ESpublic_H) -//do nothing +// do nothing #else -typedef int H5ES_status_t; +typedef int H5ES_status_t; #endif