Skip to content

Commit 54717e3

Browse files
committed
clang-format patch
Signed-off-by: gejin <[email protected]>
1 parent e035475 commit 54717e3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libdevice/cmath_wrapper.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ DEVICE_EXTERN_C
1616
ldiv_t ldiv(long int x, long int y) { return __devicelib_ldiv(x, y); }
1717

1818
DEVICE_EXTERN_C
19-
lldiv_t lldiv(long long int x, long long int y) { return __devicelib_lldiv(x, y); }
19+
lldiv_t lldiv(long long int x, long long int y) {
20+
return __devicelib_lldiv(x, y);
21+
}
2022

2123
DEVICE_EXTERN_C
2224
float scalbnf(float x, int n) { return __devicelib_scalbnf(x, n); }

0 commit comments

Comments
 (0)