-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
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
P0631R8 <numbers> Math Constants #29
Comments
Per the author of P0631, we should submit an update to the documentation at https://docs.microsoft.com/en-us/cpp/c-runtime-library/math-constants?view=vs-2019 after implementing this feature. |
This should be pretty straight forward, right? |
|
Thanks for the direction! One question, if it's dependant on concepts, what do I do re: Or could a non-concepts version also been provided via a type alias to side-step that? template <class _Ty>
using _Floating = enable_if_t<is_floating_point_v<_Ty>, _Ty>; Edit: I ask because I already did that. |
P0631R8
<numbers>
Math ConstantsThe IDE's list of extensionless headers has been updated for VS 2019 16.5.
The text was updated successfully, but these errors were encountered: