Opened 11 years ago
Closed 10 years ago
#5705 closed Bugs (wontfix)
binomial_distribution<long long> compilation error
Reported by: | Owned by: | No-Maintainer | |
---|---|---|---|
Milestone: | To Be Determined | Component: | random |
Version: | Boost 1.47.0 | Severity: | Problem |
Keywords: | Cc: |
Description
It is an error code:
boost::random::mt19937 eng; boost::random::binomial_distribution<long long> dist; dist(eng);
Output (VC9):
.\boost\random\binomial_distribution.hpp(324) : error C2668: 'abs' : ambiguous call to overloaded function
std::abs aren't overloaded for long long.
Change History (2)
comment:1 by , 11 years ago
comment:2 by , 10 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
is defined in C++11.