We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uniform_int_distribution::param() member is inherited from uniform_int.
uniform_int_distribution::param()
uniform_int
STL/stl/inc/random
Line 2140 in 8dc4faa
uniform_int::param_type
uniform_int_distribution::param_type
The text was updated successfully, but these errors were encountered:
The correct param function is now here, which is not inherited from uniform_int.
param
Lines 2264 to 2266 in 8dc4faa
Same for uniform_real_distribution.
uniform_real_distribution
Lines 3155 to 3157 in 8dc4faa
The issue was existing before but fixed in #4284. You can use VS 2022 17.10 to check the status.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
uniform_int_distribution::param()
member is inherited fromuniform_int
.STL/stl/inc/random
Line 2140 in 8dc4faa
Thus the return type is
uniform_int::param_type
notuniform_int_distribution::param_type
, which conflicts RandomNumberDistribution.The text was updated successfully, but these errors were encountered: