Skip to content

Commit ef77db7

Browse files
committed
Formatting
1 parent abd5649 commit ef77db7

2 files changed

Lines changed: 167 additions & 169 deletions

File tree

include/dxc/Test/HlslTestUtils.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -470,15 +470,13 @@ inline bool GetTestParamUseWARP(bool defaultVal) {
470470

471471
#ifdef FP_SUBNORMAL
472472

473-
template <typename T = float>
474-
inline bool isdenorm(T f) {
473+
template <typename T = float> inline bool isdenorm(T f) {
475474
return FP_SUBNORMAL == std::fpclassify(f);
476475
}
477476

478477
#else
479478

480-
template <typename T = float>
481-
inline bool isdenorm(T f) {
479+
template <typename T = float> inline bool isdenorm(T f) {
482480
return (std::numeric_limits<T>::denorm_min() <= f &&
483481
f < std::numeric_limits<T>::min()) ||
484482
(-std::numeric_limits<T>::min() < f &&

0 commit comments

Comments
 (0)