mirror of
https://github.com/g-truc/glm.git
synced 2025-04-06 14:05:01 +00:00
Merge pull request #904 from Zuzu-Typ/gauss_rand
Silence C4244 warning #904
This commit is contained in:
commit
5726c5ce71
1 changed files with 1 additions and 1 deletions
|
@ -228,7 +228,7 @@ namespace detail
|
|||
w = x1 * x1 + x2 * x2;
|
||||
} while(w > genType(1));
|
||||
|
||||
return x2 * Deviation * Deviation * sqrt((genType(-2) * log(w)) / w) + Mean;
|
||||
return static_cast<genType>(x2 * Deviation * Deviation * sqrt((genType(-2) * log(w)) / w) + Mean);
|
||||
}
|
||||
|
||||
template<length_t L, typename T, qualifier Q>
|
||||
|
|
Loading…
Add table
Reference in a new issue