Skip to content

Commit

Permalink
one more formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bashbaug committed Oct 21, 2023
1 parent f863f0e commit 6e271cd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test_conformance/spirv_new/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,7 @@ T genrandReal(RandomSeed &seed)
}

// Longer-term this could be refactored out and replace random_float():
template<typename T>
T genrandReal_range(T low, T high, RandomSeed &seed)
template <typename T> T genrandReal_range(T low, T high, RandomSeed &seed)
{
T t = genrand_real1(seed);
return (1.0 - t) * low + t * high;
Expand Down

0 comments on commit 6e271cd

Please sign in to comment.