fix: std::numeric_limits -> sprout::numeric_limits

This commit is contained in:
bolero-MURAKAMI 2013-11-06 00:11:51 +09:00
parent a954fd7d51
commit 5879c81996
2 changed files with 4 additions and 4 deletions

View file

@ -140,7 +140,7 @@ namespace sprout {
result_type result = result_type(static_cast<base_result>(eng()) - eng.min()) * (
result_type(1) / (
result_type(eng.max() - eng.min()) + result_type(
std::numeric_limits<base_result>::is_integer ? 1 : 0
sprout::numeric_limits<base_result>::is_integer ? 1 : 0
)
)
);