mirror of
https://github.com/boostorg/math.git
synced 2026-02-22 03:22:28 +00:00
Before this change, any function calling unchecked_factorial<double> would generate long double code. This created a headache for users attempting to eliminate long doubles from their compiled code. A more elegant solution might use templates to create a single lookup array for all major floating-point types, but the present solution (adding an explicit double array) works just fine. See #398.