Update clang config (#473)
* Update clang config to put H5E_BEGIN_TRY / H5E_END_TRY on separate lines, empty C++ methods on separate lines, understand that ALL_MEMBERS / UNIQUE_MEMBERS are foreach macros, and properly skip the 'config' directory in the find command without emiting a warning * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
@@ -235,11 +235,17 @@ test_array_funcs(void)
|
||||
ret = H5Tset_offset(type, (size_t)16);
|
||||
CHECK(ret, FAIL, "H5Tset_offset");
|
||||
|
||||
H5E_BEGIN_TRY { cset = H5Tget_cset(type); }
|
||||
H5E_BEGIN_TRY
|
||||
{
|
||||
cset = H5Tget_cset(type);
|
||||
}
|
||||
H5E_END_TRY;
|
||||
VERIFY(cset, FAIL, "H5Tget_cset");
|
||||
|
||||
H5E_BEGIN_TRY { strpad = H5Tget_strpad(type); }
|
||||
H5E_BEGIN_TRY
|
||||
{
|
||||
strpad = H5Tget_strpad(type);
|
||||
}
|
||||
H5E_END_TRY;
|
||||
VERIFY(strpad, FAIL, "H5Tget_strpad");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user